Fix old omission in doTestsBlockWithRunner It calls the provided runner in the -short run, but the standard runner in the complete run. Fix that.
Vytautas Ĺ altenis vytas@rtfb.lt
Mon, 04 Apr 2016 12:09:36 +0300
1 files changed,
1 insertions(+),
1 deletions(-)
jump to
M
test_helpers.go
→
test_helpers.go
@@ -66,7 +66,7 @@ if !testing.Short() {
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) } } }