Skip to content

Commit

Permalink
🎨 format code style
Browse files Browse the repository at this point in the history
  • Loading branch information
feyman committed May 10, 2023
1 parent 366623f commit a77e085
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cache_test.go
Expand Up @@ -155,7 +155,7 @@ func testCache[V any](t *testing.T, driver Driver[V], key string, value V) {
assert.True(t, ttl != 0)
assert.LessOrEqual(t, ttl, duration)

has, err := driver.Has(key)
has, _ := driver.Has(key)
assert.True(t, !has)
})
}
Expand Down

0 comments on commit a77e085

Please sign in to comment.