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 2051ba7 commit ce4dd13Copy full SHA for ce4dd13
test/org/opensolaris/opengrok/history/GitRepositoryTest.java
@@ -83,7 +83,8 @@ public void testDetermineCurrentVersion() throws Exception {
83
GitRepository gitrepo
84
= (GitRepository) RepositoryFactory.getRepository(root);
85
String ver = gitrepo.determineCurrentVersion();
86
- Assert.assertTrue(ver.startsWith("2017-01-26 14:51"));
+ Assert.assertTrue("'" + ver + "' should start with known date",
87
+ ver.startsWith("2017-01-26 14:51"));
88
}
89
90
/**
0 commit comments