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 b79fbf8 commit ed5ac2bCopy full SHA for ed5ac2b
test/org/opensolaris/opengrok/history/BazaarHistoryParserTest.java
@@ -57,7 +57,10 @@ public void setUp() {
57
if (RuntimeEnvironment.getInstance().getSourceRootPath() == null) {
58
RuntimeEnvironment.getInstance().setSourceRoot("");
59
}
60
- instance = new BazaarHistoryParser(new BazaarRepository());
+ BazaarRepository bzrRepo = new BazaarRepository();
61
+ // BazaarHistoryParser needs to have a valid directory name.
62
+ bzrRepo.setDirectoryNameRelative("bzrRepo");
63
+ instance = new BazaarHistoryParser(bzrRepo);
64
65
66
@After
0 commit comments