This test fails on line 3500, here’s the code block. Notice that the test carefully constructs the test string with the system file separator. Even so, the the tuple has a *nix style separator and the test string a Windows separator.
final String expectedSecondLevel1Path = "directory1" + File.separator + "secondLevel1.txt"; for (int i = 0; i < 4; i++) { Tuple t = tuples.get(i); assertEquals("secondLevel1.txt line " + String.valueOf(i+1), t.get("line")); assertEquals(expectedSecondLevel1Path, t.get("file")); } FAILED: org.apache.solr.client.solrj.io.stream.StreamExpressionTest.testCatStreamDirectoryCrawl Error Message: expected:<directory1[\]secondLevel1.txt> but was:<directory1[/]secondLevel1.txt> --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org For additional commands, e-mail: dev-h...@lucene.apache.org