Fix Sprintf verb

This commit is contained in:
Shawn Smith 2015-05-10 13:22:18 +09:00
parent 738f403eea
commit 5b0d4d72ba

View File

@ -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()