Skip to content

Commit

Permalink
fixed some warnings from the linter
Browse files Browse the repository at this point in the history
  • Loading branch information
caffix committed Mar 31, 2023
1 parent 51151bb commit 3e1d8da
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mem_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ func TestMemSet(t *testing.T) {
set := New()
defer set.Close()

set.memSet(test.Value)
_ = set.memSet(test.Value)
for _, e := range test.Expected {
var found bool

Expand Down
2 changes: 1 addition & 1 deletion store_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ func TestStoreSet(t *testing.T) {
defer set.Close()
set.setMemSaveState()

set.storeSet(test.Value)
_ = set.storeSet(test.Value)
for _, e := range test.Expected {
var found bool

Expand Down

0 comments on commit 3e1d8da

Please sign in to comment.