Browse Source

clientv3/integration: fix minor typo in Fatalf

Signed-off-by: Gyu-Ho Lee <gyuhox@gmail.com>
Gyu-Ho Lee 8 years ago
parent
commit
369d561350
1 changed files with 1 additions and 1 deletions
  1. 1 1
      clientv3/integration/watch_test.go

+ 1 - 1
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
 	}