From 76062d428d9a16e4080bbb68b809016bc10326f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vytautas=20=C5=A0altenis?= Date: Tue, 5 Apr 2016 10:00:34 +0300 Subject: [PATCH] Fixup broken test reporting Dereference the pointer introduced in f35fae8. --- test_helpers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_helpers.go b/test_helpers.go index 0c6648d..b5187b4 100644 --- a/test_helpers.go +++ b/test_helpers.go @@ -64,7 +64,7 @@ func doTestsParam(t *testing.T, tests []string, params TestParams) { actual := runMarkdown(*candidate, params) if actual != expected { t.Errorf("\nInput [%#v]\nExpected[%#v]\nActual [%#v]", - candidate, expected, actual) + *candidate, expected, actual) } // now test every substring to stress test bounds checking