We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8aca60b commit 07196c2Copy full SHA for 07196c2
1 file changed
cache/runtime/cache_runtime_test.go
@@ -101,7 +101,7 @@ func TestRuntimeCache_Delete(t *testing.T) {
101
test.Nil(t, e)
102
test.Equal(t, TESTCacheValue, value)
103
104
- _, _ = cache.Delete(TESTCacheKey)
+ _ = cache.Delete(TESTCacheKey)
105
106
value, e = cache.Get(TESTCacheKey)
107
@@ -120,7 +120,7 @@ func TestRuntimeCache_ClearAll(t *testing.T) {
120
}
121
test.Equal(t, TESTCacheValue, val2)
122
123
- _, _ = cache.ClearAll()
+ _ = cache.ClearAll()
124
exists2, err := cache.Exists("2")
125
if err != nil {
126
t.Error(err)
0 commit comments