Skip to content

Commit

Permalink
Merge pull request #8035 from shawnps/patch-9
Browse files Browse the repository at this point in the history
Fix Sprintf verb
  • Loading branch information
wojtek-t committed May 11, 2015
2 parents c18f7df + 5b0d4d7 commit 9b6ef98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/integration/client_test.go
Expand Up @@ -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()
Expand Down

0 comments on commit 9b6ef98

Please sign in to comment.