Skip to content

Commit

Permalink
Fix concurrency tests
Browse files Browse the repository at this point in the history
A past change added the delete but forgot the required write
  • Loading branch information
philippgille committed Jan 27, 2024
1 parent ac2f444 commit 7eecb5e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions test/test.go
Original file line number Diff line number Diff line change
Expand Up @@ -363,4 +363,9 @@ func InteractWithStore(store gokv.Store, key string, t *testing.T, waitGroup *sy
if err != nil {
t.Error(err)
}
// Final write so the caller can iterate over all keys sequentially and check if they exist
err = store.Set(key, Foo{})
if err != nil {
t.Error(err)
}
}

0 comments on commit 7eecb5e

Please sign in to comment.