Skip to content

Commit 6b626e1

Browse files
committed
fix: golangci-run lint issues in tests
1 parent fb561f5 commit 6b626e1

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

internal/model/ops_test.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,12 @@ func TestModel(t *testing.T) {
5252
var entries []string
5353
entries, err = model.List(t.Context(), storage, "path/")
5454
require.Len(t, entries, 1)
55+
require.NoError(t, err)
5556

5657
require.NoError(t, model.Delete(t.Context(), storage, path))
5758

5859
entries, err = model.List(t.Context(), storage, "path/")
5960
require.Len(t, entries, 0)
61+
require.NoError(t, err)
6062
})
6163
}

0 commit comments

Comments
 (0)