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 b1f37a6 commit 5772f2dCopy full SHA for 5772f2d
opengrok-indexer/src/test/java/org/opengrok/indexer/index/IndexerTest.java
@@ -344,7 +344,7 @@ public void testRemoveFileOnFileChange() throws Exception {
344
File historyFile = new File(env.getDataRootPath(),
345
TandemPath.join("historycache" + path, ".gz"));
346
Assert.assertTrue(String.format("history cache for %s has to exist", path), historyFile.exists());
347
- File bar = new File(testrepo.getSourceRoot() + File.separator + "mercurial","bar.txt");
+ File bar = new File(testrepo.getSourceRoot() + File.separator + "mercurial", "bar.txt");
348
Assert.assertTrue(bar.exists());
349
try (BufferedWriter bw = new BufferedWriter(new FileWriter(bar, true))) {
350
bw.write("foo\n");
0 commit comments