| Index: filter/count/count_test.go
|
| diff --git a/filter/count/count_test.go b/filter/count/count_test.go
|
| index 60c78589d4cc61800e7165350e29bac18a8d8d16..0a67a774229c1a767a77c13edc279bc0b0458190 100644
|
| --- a/filter/count/count_test.go
|
| +++ b/filter/count/count_test.go
|
| @@ -99,8 +99,12 @@ func TestCount(t *testing.T) {
|
| mc := memcache.Get(c)
|
|
|
| die(mc.Set(mc.NewItem("hello").SetValue([]byte("sup"))))
|
| - So(mc.Get(mc.NewItem("Wat")), ShouldNotBeNil)
|
| - die(mc.Get(mc.NewItem("hello")))
|
| +
|
| + _, err := mc.Get("Wat")
|
| + So(err, ShouldNotBeNil)
|
| +
|
| + _, err = mc.Get("hello")
|
| + die(err)
|
|
|
| So(ctr.SetMulti, shouldHaveSuccessesAndErrors, 1, 0)
|
| So(ctr.GetMulti, shouldHaveSuccessesAndErrors, 2, 0)
|
|
|