clientv3/integration: fix a typo in "TestLeasingTxnRangeCmp"

Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
release-3.5
Gyuho Lee 2020-01-19 23:55:37 -08:00
parent 4fc6fa4ce5
commit 993e82a85b
1 changed files with 2 additions and 1 deletions

View File

@ -939,6 +939,7 @@ func TestLeasingTxnNonOwnerPut(t *testing.T) {
if len(gresp.Kvs) != 1 || string(gresp.Kvs[0].Value) != "456" {
t.Errorf(`expected value "def", got %+v`, gresp)
}
// check puts were applied and are all in the same revision
w := clus.Client(0).Watch(
clus.Client(0).Ctx(),
@ -1738,7 +1739,7 @@ func TestLeasingTxnRangeCmp(t *testing.T) {
cmp := clientv3.Compare(clientv3.Version("k").WithPrefix(), "=", 1)
tresp, terr := lkv.Txn(context.TODO()).If(cmp).Commit()
if terr != nil {
t.Fatal(err)
t.Fatal(terr)
}
if tresp.Succeeded {
t.Fatalf("expected Succeeded=false, got %+v", tresp)