index: fix test by excluding the sqlindex package.

it's not a full index, but just an IndexStorage.

Change-Id: I2a3b7c5705c8a01645f2ac3f97f2621b042ef19c
This commit is contained in:
Brad Fitzpatrick 2012-04-13 14:12:04 -07:00
parent 4849adfd59
commit 3826cc11be
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ func TestFiles_Memory(t *testing.T) {
var ( var (
// those dirs are not packages implementing indexers, // those dirs are not packages implementing indexers,
// hence we do not want to check them. // 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 // A map is used in hasAllRequiredTests to note which required
// tests have been found in a package, by setting the corresponding // tests have been found in a package, by setting the corresponding
// booleans to true. Those are the keys for this map. // booleans to true. Those are the keys for this map.