Skip to content

Commit

Permalink
Merge pull request #13957 from ahrtr/fix_TestKVPut
Browse files Browse the repository at this point in the history
Use lineariziable range request in TestKVGet
  • Loading branch information
ptabor committed Apr 18, 2022
2 parents 8149191 + 842fed5 commit 93c54b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/common/kv_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ func TestKVPut(t *testing.T) {
if err := cc.Put(key, value, config.PutOptions{}); err != nil {
t.Fatalf("count not put key %q, err: %s", key, err)
}
resp, err := cc.Get(key, config.GetOptions{Serializable: true})
resp, err := cc.Get(key, config.GetOptions{})
if err != nil {
t.Fatalf("count not get key %q, err: %s", key, err)
}
Expand Down

0 comments on commit 93c54b8

Please sign in to comment.