Browse Source

fix formatting of panicf function

pull/1780/head
Anton Kaliaev 7 years ago
parent
commit
03fafeec2f
No known key found for this signature in database GPG Key ID: 7B6881D965918214
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      tests/test_app/app.go

+ 1
- 1
tests/test_app/app.go View File

@ -99,5 +99,5 @@ func deliverTx(client abcicli.Client, txBytes []byte, codeExp types.CodeType, da
}*/
func panicf(format string, a ...interface{}) {
panic(fmt.Sprintf(format, a))
panic(fmt.Sprintf(format, a...))
}

Loading…
Cancel
Save