Skip to content

Commit ce4dd13

Browse files
committed
print ver
1 parent 2051ba7 commit ce4dd13

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/org/opensolaris/opengrok/history/GitRepositoryTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,8 @@ public void testDetermineCurrentVersion() throws Exception {
8383
GitRepository gitrepo
8484
= (GitRepository) RepositoryFactory.getRepository(root);
8585
String ver = gitrepo.determineCurrentVersion();
86-
Assert.assertTrue(ver.startsWith("2017-01-26 14:51"));
86+
Assert.assertTrue("'" + ver + "' should start with known date",
87+
ver.startsWith("2017-01-26 14:51"));
8788
}
8889

8990
/**

0 commit comments

Comments
 (0)