From d0dfff8292cd09e85db4ff5da0732115ff93f1a8 Mon Sep 17 00:00:00 2001 From: David Hill Date: Tue, 4 Feb 2014 14:35:38 -0500 Subject: [PATCH] fix typo in test: use %s for strings --- common_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common_test.go b/common_test.go index c5ca0291d..f75ad8c67 100644 --- a/common_test.go +++ b/common_test.go @@ -406,7 +406,7 @@ func TestVarStringWire(t *testing.T) { continue } if val != test.out { - t.Errorf("readVarString #%d\n got: %d want: %d", i, + t.Errorf("readVarString #%d\n got: %s want: %s", i, val, test.out) continue }