Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
acha-bill committed Nov 12, 2024
1 parent 67ee068 commit 660af1f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pkg/storer/internal/chunkstore/chunkstore_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -386,6 +386,10 @@ func TestChunkStore(t *testing.T) {
err = st.Run(ctx, func(s transaction.Store) error {
return s.ChunkStore().Replace(ctx, ch2, tt.emplace)
})
if err != nil {
t.Fatal(err)
}

ch, err := st.ChunkStore().Get(ctx, ch2.Address())
if err != nil {
t.Fatal(err)
Expand Down

0 comments on commit 660af1f

Please sign in to comment.