Skip to content

Commit

Permalink
fix ut
Browse files Browse the repository at this point in the history
Signed-off-by: sunby <[email protected]>
  • Loading branch information
sunby committed Dec 27, 2023
1 parent 0ce6f90 commit ecac247
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions go/storage/manifest/manifest_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ func TestManifestCommitOp(t *testing.T) {
mc.AddOp(AddScalarFragmentOp{ScalarFragment: fragment.NewFragment()})
mc.AddOp(AddVectorFragmentOp{VectorFragment: fragment.NewFragment()})
mc.AddOp(AddDeleteFragmentOp{DeleteFragment: fragment.NewFragment()})
err = mc.Commit()
_, err = mc.Commit()
assert.NoError(t, err)
}

Expand Down Expand Up @@ -254,7 +254,7 @@ func TestManifestCommit_concurrency(t *testing.T) {
mc.AddOp(AddScalarFragmentOp{ScalarFragment: fragment.NewFragment()})
mc.AddOp(AddVectorFragmentOp{VectorFragment: fragment.NewFragment()})
mc.AddOp(AddDeleteFragmentOp{DeleteFragment: fragment.NewFragment()})
err = mc.Commit()
_, err = mc.Commit()
wg.Done()
}()
}
Expand Down

0 comments on commit ecac247

Please sign in to comment.