Skip to content

Commit

Permalink
updated assert statement in test since it expected forward slashes fo…
Browse files Browse the repository at this point in the history
…r a path, which failed on windows because of backwards slashes
  • Loading branch information
fasseg committed Jun 7, 2013
1 parent 9b63f43 commit 12f7304
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -210,7 +210,7 @@ public void testFileSystemExternalIdentifier() throws Exception {
assertTrue(identifier.startsWith("zyx/org.modeshape.jcr.value.binary" +
".FileSystemBinaryStore"));
// some test junk in the middle
assertTrue(identifier.endsWith("/tmp/xyz"));
assertTrue(identifier.endsWith("/tmp/xyz") || identifier.endsWith("\\tmp\\xyz"));
}

/**
Expand Down

0 comments on commit 12f7304

Please sign in to comment.