Merge pull request #8035 from shawnps/patch-9

Fix Sprintf verb
This commit is contained in:
Wojciech Tyczynski
2015-05-11 12:43:01 +02:00

View File

@@ -252,7 +252,7 @@ func TestMultiWatch(t *testing.T) {
rv, rv,
) )
if err != nil { 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() defer w.Stop()
watchesStarted.Done() watchesStarted.Done()