From 5b0d4d72ba763a77f4172689d8472ae78950eebc Mon Sep 17 00:00:00 2001 From: Shawn Smith Date: Sun, 10 May 2015 13:22:18 +0900 Subject: [PATCH] Fix Sprintf verb --- test/integration/client_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/client_test.go b/test/integration/client_test.go index df4313ad596..1afc4ec77db 100644 --- a/test/integration/client_test.go +++ b/test/integration/client_test.go @@ -252,7 +252,7 @@ func TestMultiWatch(t *testing.T) { rv, ) if err != nil { - panic(fmt.Sprintf("watch error for %v: %", name, err)) + panic(fmt.Sprintf("watch error for %v: %v", name, err)) } defer w.Stop() watchesStarted.Done()