From 0e043b3393b5bd9027c702fe819d4da112f52227 Mon Sep 17 00:00:00 2001 From: Vincent Vanackere Date: Fri, 1 Aug 2014 22:14:03 +0200 Subject: cleanup : unexport FilterMap & remove FilterSubstringsMap (unneeded) --- filter_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'filter_test.go') diff --git a/filter_test.go b/filter_test.go index a771cff..baecab9 100644 --- a/filter_test.go +++ b/filter_test.go @@ -9,7 +9,7 @@ import ( type compileTest struct { filterStr string - filterType int + filterType uint8 } var testFilters = []compileTest{ @@ -34,7 +34,7 @@ func TestFilter(t *testing.T) { if err != nil { t.Errorf("Problem compiling %s - %s", i.filterStr, err.Error()) } else if filter.Tag != uint8(i.filterType) { - t.Errorf("%q Expected %q got %q", i.filterStr, FilterMap[uint64(i.filterType)], FilterMap[uint64(filter.Tag)]) + t.Errorf("%q Expected %q got %q", i.filterStr, filterMap[i.filterType], filterMap[filter.Tag]) } else { o, err := DecompileFilter(filter) if err != nil { -- cgit v1.2.3