From 03fafeec2fc8fd95e30f4a9af31472b4a5e5718b Mon Sep 17 00:00:00 2001 From: Anton Kaliaev Date: Wed, 22 Nov 2017 19:38:04 -0600 Subject: [PATCH] fix formatting of panicf function --- tests/test_app/app.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_app/app.go b/tests/test_app/app.go index c3e9d14fc..c869fe83a 100644 --- a/tests/test_app/app.go +++ b/tests/test_app/app.go @@ -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...)) }