all repos — grayfriday @ 0c7120d6dcf886a1ab1b96a8eab9a7142aebd4e2

blackfriday fork with a few changes

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
commit

0c7120d6dcf886a1ab1b96a8eab9a7142aebd4e2

parent

a658caacc6244df1b6a760c6a571e579a2327b57

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M test_helpers.gotest_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) } } }