Skip to content
This repository has been archived by the owner on May 4, 2023. It is now read-only.

Commit

Permalink
use OS-insensitive path assertion. (closes #127)
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Newson committed Jul 14, 2011
1 parent 2c39f22 commit 805ecbc
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -38,7 +38,7 @@ public void testGetDir() {
assertTrue(dir.exists());
assertTrue(dir.canRead());
assertTrue(dir.canWrite());
assertEquals("target/indexes", dir.getPath());
assertEquals(new File("target", "indexes"), dir);
} catch (ConfigurationException ce) {
fail("ConfigurationException shouldn't have been thrown."
+ ce.getMessage());
Expand Down

0 comments on commit 805ecbc

Please sign in to comment.