Fixup broken test reporting Dereference the pointer introduced in f35fae8.
Vytautas Ĺ altenis vytas@rtfb.lt
Tue, 05 Apr 2016 10:00:34 +0300
1 files changed,
1 insertions(+),
1 deletions(-)
jump to
M
test_helpers.go
→
test_helpers.go
@@ -64,7 +64,7 @@ expected := tests[i+1]
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