Skip to content

Commit

Permalink
go/store/nbs: Fix store_test.go
Browse files Browse the repository at this point in the history
  • Loading branch information
reltuk committed Jan 22, 2025
1 parent daf3d78 commit 591e29c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion go/store/nbs/store_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -345,8 +345,9 @@ func TestNBSCopyGC(t *testing.T) {
keepersSlice = append(keepersSlice, h)
}
require.NoError(t, sweeper.SaveHashes(ctx, keepersSlice))
finalizer, err := sweeper.Close(ctx)
finalizer, err := sweeper.Finalize(ctx)
require.NoError(t, err)
require.NoError(t, sweeper.Close(ctx))
require.NoError(t, finalizer.SwapChunksInStore(ctx))
st.EndGC()

Expand Down

0 comments on commit 591e29c

Please sign in to comment.