diff options
author | James Moger <james.moger@gitblit.com> | 2012-02-03 22:49:14 -0500 |
---|---|---|
committer | James Moger <james.moger@gitblit.com> | 2012-02-03 22:49:14 -0500 |
commit | b86562942b1d4a498e337b28201e0db308fa51c8 (patch) | |
tree | 06410c9d314587e809954aa9be2f268bc1040407 /tests/com | |
parent | b7403152813c7fee783e3c999c7f7ae9fbaacce0 (diff) | |
download | gitblit-b86562942b1d4a498e337b28201e0db308fa51c8.tar.gz gitblit-b86562942b1d4a498e337b28201e0db308fa51c8.zip |
Setting to control display/serving non-bare repositories (issue 49)
Diffstat (limited to 'tests/com')
-rw-r--r-- | tests/com/gitblit/tests/JGitUtilsTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/com/gitblit/tests/JGitUtilsTest.java b/tests/com/gitblit/tests/JGitUtilsTest.java index 8d70d2fa..d365bdea 100644 --- a/tests/com/gitblit/tests/JGitUtilsTest.java +++ b/tests/com/gitblit/tests/JGitUtilsTest.java @@ -66,7 +66,7 @@ public class JGitUtilsTest { @Test
public void testFindRepositories() {
- List<String> list = JGitUtils.getRepositoryList(null, true, true);
+ List<String> list = JGitUtils.getRepositoryList(null, false, true);
assertEquals(0, list.size());
list.addAll(JGitUtils.getRepositoryList(new File("DoesNotExist"), true, true));
assertEquals(0, list.size());
|