Skip to content

Commit

Permalink
testsuite: fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
mossheim committed Apr 5, 2018
1 parent 72aa473 commit d0ead69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testsuite/classlibrary/TestString.sc
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ TestString : UnitTest {
test_appendPathSep_stringWithPathName_convertsToPathName {
var result = "abc" +/+ PathName("def");
var expected = PathName("abc" +/+ "def");
this.assertEquals(result, expected);
this.assertEquals(result.fullPath, expected.fullPath);
}

}
Expand Down

0 comments on commit d0ead69

Please sign in to comment.