From 2669b83c68a9a7a857ab6e0aa2cef9dc7a5a7a6e Mon Sep 17 00:00:00 2001 From: Gyuho Lee Date: Sun, 19 Jan 2020 10:20:23 -0800 Subject: [PATCH] clientv3/integration: fix typo in "TestLeasingRevGet" Signed-off-by: Gyuho Lee --- clientv3/integration/leasing_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clientv3/integration/leasing_test.go b/clientv3/integration/leasing_test.go index cc3ecffcd..06c5d2fbb 100644 --- a/clientv3/integration/leasing_test.go +++ b/clientv3/integration/leasing_test.go @@ -318,7 +318,7 @@ func TestLeasingRevGet(t *testing.T) { t.Fatal(gerr) } if len(getResp.Kvs) != 1 || string(getResp.Kvs[0].Value) != "def" { - t.Fatalf(`expected "k"->"abc" at rev=%d, got response %+v`, putResp.Header.Revision, getResp) + t.Fatalf(`expected "k"->"def" at rev=%d, got response %+v`, putResp.Header.Revision, getResp) } }