From 0c7120d6dcf886a1ab1b96a8eab9a7142aebd4e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vytautas=20=C5=A0altenis?= Date: Mon, 4 Apr 2016 12:09:36 +0300 Subject: [PATCH] Fix old omission in doTestsBlockWithRunner It calls the provided runner in the -short run, but the standard runner in the complete run. Fix that. --- test_helpers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_helpers.go b/test_helpers.go index a9dab9a..8a12115 100644 --- a/test_helpers.go +++ b/test_helpers.go @@ -66,7 +66,7 @@ func doTestsBlockWithRunner(t *testing.T, tests []string, params TestParams, run for start := 0; start < len(input); start++ { for end := start + 1; end <= len(input); end++ { candidate = input[start:end] - _ = runMarkdownBlock(candidate, params) + runner(candidate, params) } } }