Skip to content

Commit

Permalink
remove unecessary comment
Browse files Browse the repository at this point in the history
  • Loading branch information
fredcarle committed Jun 20, 2024
1 parent 2f31dc7 commit 9891f2a
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions datastore/txn_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,6 @@ func TestMemoryStoreTxn_TwoTransactionsWithQueryAndPut_ShouldOmmitNewPut(t *test
err = txn2.Put(ctx, ds.NewKey("other-key"), []byte("other-value"))
require.NoError(t, err)

// Commit txn2 first to create a conflict
err = txn2.Commit(ctx)
require.NoError(t, err)

Expand Down Expand Up @@ -507,7 +506,6 @@ func TestBadgerMemoryStoreTxn_TwoTransactionsWithQueryAndPut_ShouldOmmitNewPut(t
err = txn2.Put(ctx, ds.NewKey("other-key"), []byte("other-value"))
require.NoError(t, err)

// Commit txn2 first to create a conflict
err = txn2.Commit(ctx)
require.NoError(t, err)

Expand Down Expand Up @@ -539,7 +537,6 @@ func TestBadgerFileStoreTxn_TwoTransactionsWithQueryAndPut_ShouldOmmitNewPut(t *
err = txn2.Put(ctx, ds.NewKey("other-key"), []byte("other-value"))
require.NoError(t, err)

// Commit txn2 first to create a conflict
err = txn2.Commit(ctx)
require.NoError(t, err)

Expand Down

0 comments on commit 9891f2a

Please sign in to comment.