Skip to content

Commit

Permalink
Ensure compatibility with windows for test (see #266)
Browse files Browse the repository at this point in the history
  • Loading branch information
luigi-asprino committed Nov 9, 2023
1 parent b621cce commit b979e75
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ public class TriplifierTest {
@Test
public void instantiateURLTest() {
Properties p = new Properties();
p.setProperty(IRIArgument.LOCATION.toString(), "file:///a/b.c");
Assert.assertEquals("file:///a/b.c#", Triplifier.getRootArgument(p));
p.setProperty(IRIArgument.LOCATION.toString(), "http://a/b.c");
Assert.assertEquals("http://a/b.c#", Triplifier.getRootArgument(p));
}

}

0 comments on commit b979e75

Please sign in to comment.