Skip to content

Commit

Permalink
typo in test (still had Unix path seps)
Browse files Browse the repository at this point in the history
  • Loading branch information
barmintor committed Apr 18, 2013
1 parent 53832cd commit 7ac04a4
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -108,7 +108,7 @@ public void testFileFor() throws IOException {
touch(new File(data, "bar"));
File result = testObj.fileFor("/foo/bar");
assertTrue(result.exists());
assertEquals(result.getParent(), tempDir.getAbsolutePath() + "/foo/data");
assertEquals(result.getParent(), data.getAbsolutePath());
}

@Test
Expand Down

0 comments on commit 7ac04a4

Please sign in to comment.