We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 750003f commit c9773a2Copy full SHA for c9773a2
src/test/scala/progscala3/rounding/PathSuite.scala
@@ -22,5 +22,5 @@ class PathSuite extends FunSuite:
22
}
23
test("concatenation with the infix 'append'") {
24
val a = Path("a")
25
- assert(Path("a/b") == (a append "b"))
+ assert(Path(s"a${Path.defaultSeparator}b") == (a append "b"))
26
0 commit comments