We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0a8246 commit 855e7d6Copy full SHA for 855e7d6
opengrok-indexer/src/test/java/org/opengrok/indexer/index/IndexDatabaseTest.java
@@ -651,7 +651,9 @@ void testHistoryBasedReindexWithEligibleSubRepo() throws Exception {
651
assertNotNull(fileCollector);
652
assertTrue(fileCollector.getFiles().size() > 1);
653
assertTrue(fileCollector.getFiles().
654
- contains("/" + gitProject.getName() + "/" + subRepoName + "/" + changedFileName));
+ contains(File.separator + gitProject.getName() +
655
+ File.separator + subRepoName +
656
+ File.separator + changedFileName));
657
}
658
659
/**
0 commit comments