Fix old omission in doTestsBlockWithRunner

It calls the provided runner in the -short run, but the standard runner
in the complete run. Fix that.
This commit is contained in:
Vytautas Šaltenis 2016-04-04 12:09:36 +03:00
parent a658caacc6
commit 0c7120d6dc

View File

@ -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)
}
}
}