From 68ce2ce77157b2fda9c4f4a0893ece499e747320 Mon Sep 17 00:00:00 2001
From: James Moger <james.moger@gitblit.com>
Date: Wed, 14 Mar 2012 16:34:22 -0400
Subject: [PATCH] Repository must have commits to be searchable

---
 tests/com/gitblit/tests/GitBlitSuite.java |    4 +---
 1 files changed, 1 insertions(+), 3 deletions(-)

diff --git a/tests/com/gitblit/tests/GitBlitSuite.java b/tests/com/gitblit/tests/GitBlitSuite.java
index 210a7da..4a70964 100644
--- a/tests/com/gitblit/tests/GitBlitSuite.java
+++ b/tests/com/gitblit/tests/GitBlitSuite.java
@@ -91,7 +91,7 @@
 	}
 	
 	public static Repository getGitectiveRepository() throws Exception {
-		return new FileRepository(new File("test/gitective.git"));
+		return new FileRepository(new File(REPOSITORIES, "test/gitective.git"));
 	}
 
 	public static boolean startGitblit() throws Exception {
@@ -131,8 +131,6 @@
 		if (REPOSITORIES.exists() || REPOSITORIES.mkdirs()) {
 			cloneOrFetch("helloworld.git", "https://github.com/git/hello-world.git");
 			cloneOrFetch("ticgit.git", "https://github.com/jeffWelling/ticgit.git");
-			cloneOrFetch("test/bluez-gnome.git",
-					"https://git.kernel.org/pub/scm/bluetooth/bluez-gnome.git");
 			cloneOrFetch("test/jgit.git", "https://github.com/eclipse/jgit.git");
 			cloneOrFetch("test/helloworld.git", "https://github.com/git/hello-world.git");
 			cloneOrFetch("test/ambition.git", "https://github.com/defunkt/ambition.git");

--
Gitblit v1.9.1