Skip to content

Commit

Permalink
Assign unused value to _
Browse files Browse the repository at this point in the history
  • Loading branch information
fiam committed Oct 28, 2013
1 parent 34e497c commit 2a4853c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion memcache/memcache_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ func testWithClient(t *testing.T, c *Client) {
// Delete
err = c.Delete("foo")
checkErr(err, "Delete: %v", err)
it, err = c.Get("foo")
_, err = c.Get("foo")
if err != ErrCacheMiss {
t.Errorf("post-Delete want ErrCacheMiss, got %v", err)
}
Expand Down

0 comments on commit 2a4853c

Please sign in to comment.