From 3826cc11bea27fe1b443101d59cb5ed64713aca6 Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Fri, 13 Apr 2012 14:12:04 -0700 Subject: [PATCH] index: fix test by excluding the sqlindex package. it's not a full index, but just an IndexStorage. Change-Id: I2a3b7c5705c8a01645f2ac3f97f2621b042ef19c --- pkg/index/index_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/index/index_test.go b/pkg/index/index_test.go index 3fc8623ec..f782aff76 100644 --- a/pkg/index/index_test.go +++ b/pkg/index/index_test.go @@ -58,7 +58,7 @@ func TestFiles_Memory(t *testing.T) { var ( // those dirs are not packages implementing indexers, // hence we do not want to check them. - excludedDirs = []string{"indextest", "testdata"} + excludedDirs = []string{"indextest", "testdata", "sqlindex"} // A map is used in hasAllRequiredTests to note which required // tests have been found in a package, by setting the corresponding // booleans to true. Those are the keys for this map.