From 369d561350af81baa8f7b8bb0306b3ce373edffa Mon Sep 17 00:00:00 2001 From: Gyu-Ho Lee Date: Thu, 6 Apr 2017 18:26:42 -0700 Subject: [PATCH] clientv3/integration: fix minor typo in Fatalf Signed-off-by: Gyu-Ho Lee --- clientv3/integration/watch_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clientv3/integration/watch_test.go b/clientv3/integration/watch_test.go index f3863494a..c4dd86ea9 100644 --- a/clientv3/integration/watch_test.go +++ b/clientv3/integration/watch_test.go @@ -414,7 +414,7 @@ func TestWatchResumeCompacted(t *testing.T) { continue } if wresp.Err() != rpctypes.ErrCompacted { - t.Fatalf("wresp.Err() expected %v, but got %v %+v", rpctypes.ErrCompacted, wresp.Err()) + t.Fatalf("wresp.Err() expected %v, got %+v", rpctypes.ErrCompacted, wresp.Err()) } break }