From d97e52ef501a72fcf16aee02d7e79c91d123dfe6 Mon Sep 17 00:00:00 2001 From: James Moger <james.moger@gitblit.com> Date: Fri, 24 Aug 2012 13:32:44 -0400 Subject: [PATCH] Implemented custom request handling for (un)authenticated sessions to workaround Wicket bugs --- 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 495a00b..ee60d05 100644 --- a/tests/com/gitblit/tests/JGitUtilsTest.java +++ b/tests/com/gitblit/tests/JGitUtilsTest.java @@ -86,7 +86,7 @@ list = JGitUtils.getRepositoryList(GitBlitSuite.REPOSITORIES, false, true, -1, Arrays.asList("test/*")); assertFalse("Repository exclusion failed!", list.contains("test/jgit.git")); - list = JGitUtils.getRepositoryList(GitBlitSuite.REPOSITORIES, false, true, -1, Arrays.asList("(jgit)+")); + list = JGitUtils.getRepositoryList(GitBlitSuite.REPOSITORIES, false, true, -1, Arrays.asList(".*jgit.*")); assertFalse("Repository exclusion failed!", list.contains("test/jgit.git")); assertFalse("Repository exclusion failed!", list.contains("working/jgit")); assertFalse("Repository exclusion failed!", list.contains("working/jgit2")); -- Gitblit v1.9.1