From 65b2faeaa2df7986ed6150e951311c149350f1c1 Mon Sep 17 00:00:00 2001 From: Marty Schoch Date: Sat, 2 Aug 2014 19:17:53 -0400 Subject: [PATCH] fix go vet --- numeric_util/float_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/numeric_util/float_test.go b/numeric_util/float_test.go index 3d68bdf3..b284ccf4 100644 --- a/numeric_util/float_test.go +++ b/numeric_util/float_test.go @@ -52,7 +52,7 @@ func TestSortabledFloat64ToInt64(t *testing.T) { convertedBack := Int64ToFloat64(actual) // assert that we got back what we started with if convertedBack != test.input { - t.Errorf("expected %d, got %d", test.input, convertedBack) + t.Errorf("expected %f, got %f", test.input, convertedBack) } } }