Index: impl/dummy/dummy_test.go |
diff --git a/impl/dummy/dummy_test.go b/impl/dummy/dummy_test.go |
index 001877381181637823c69292ad0ca8450770f8ee..72630ae189f7aba0b7c2e70fed59b47edef9a599 100644 |
--- a/impl/dummy/dummy_test.go |
+++ b/impl/dummy/dummy_test.go |
@@ -50,8 +50,8 @@ func TestContextAccess(t *testing.T) { |
So(dsS.Get(c), ShouldNotBeNil) |
So(func() { |
defer p() |
- dsS.Get(c).DecodeKey("wut") |
- }, ShouldPanicWith, "dummy: method Datastore.DecodeKey is not implemented") |
+ _, _ = dsS.Get(c).DecodeCursor("wut") |
+ }, ShouldPanicWith, "dummy: method Datastore.DecodeCursor is not implemented") |
}) |
Convey("Memcache", func() { |
@@ -59,7 +59,7 @@ func TestContextAccess(t *testing.T) { |
So(mcS.Get(c), ShouldNotBeNil) |
So(func() { |
defer p() |
- mcS.Get(c).Add(nil) |
+ _ = mcS.Get(c).Add(nil) |
}, ShouldPanicWith, "dummy: method Memcache.AddMulti is not implemented") |
}) |
@@ -68,7 +68,7 @@ func TestContextAccess(t *testing.T) { |
So(tqS.Get(c), ShouldNotBeNil) |
So(func() { |
defer p() |
- tqS.Get(c).Purge("") |
+ _ = tqS.Get(c).Purge("") |
}, ShouldPanicWith, "dummy: method TaskQueue.Purge is not implemented") |
}) |