From 2eea0c0a703e32b904741d52c9e2c9ae836c14b0 Mon Sep 17 00:00:00 2001 From: Samuel Stauffer Date: Wed, 19 Mar 2014 14:22:55 -0700 Subject: Use error instead of *Error --- 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 70f5aa3..1df4814 100644 --- a/filter_test.go +++ b/filter_test.go @@ -31,13 +31,13 @@ func TestFilter(t *testing.T) { for _, i := range testFilters { filter, err := CompileFilter(i.filterStr) if err != nil { - t.Errorf("Problem compiling %s - %s", i.filterStr, err.String()) + 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)]) } else { o, err := DecompileFilter(filter) if err != nil { - t.Errorf("Problem compiling %s - %s", i.filterStr, err.String()) + t.Errorf("Problem compiling %s - %s", i.filterStr, err.Error()) } else if i.filterStr != o { t.Errorf("%q expected, got %q", i.filterStr, o) } -- cgit v1.2.3