Skip to content

Commit c5a9e8d

Browse files
authored
Merge pull request #35 from ShapelessCat/fix-PathSuite
Fix a unit test in PathSuite
2 parents 750003f + c9773a2 commit c5a9e8d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/scala/progscala3/rounding/PathSuite.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ class PathSuite extends FunSuite:
2222
}
2323
test("concatenation with the infix 'append'") {
2424
val a = Path("a")
25-
assert(Path("a/b") == (a append "b"))
25+
assert(Path(s"a${Path.defaultSeparator}b") == (a append "b"))
2626
}

0 commit comments

Comments
 (0)