Alex Lewis
2013-12-23 f879b59d26aa85b3a80d984abd7194ffb3e9946d
Fixed test.

testRevlog was expecting 12 commits but getting 19. Looking at the
hello-world repository on github (on which the test executes) the 19
commit count appears to be correct.
1 files modified
2 ■■■ changed files
src/test/java/com/gitblit/tests/JGitUtilsTest.java 2 ●●● patch | view | raw | blame | history
src/test/java/com/gitblit/tests/JGitUtilsTest.java
@@ -518,7 +518,7 @@
        // grab the commits since 2008-07-15
        commits = JGitUtils.getRevLog(repository, null,
                new SimpleDateFormat("yyyy-MM-dd").parse("2008-07-15"));
        assertEquals(12, commits.size());
        assertEquals(19, commits.size());
        repository.close();
    }