mirror of
https://github.com/status-im/markdown.git
synced 2025-02-23 16:48:14 +00:00
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:
parent
a658caacc6
commit
0c7120d6dc
@ -66,7 +66,7 @@ func doTestsBlockWithRunner(t *testing.T, tests []string, params TestParams, run
|
|||||||
for start := 0; start < len(input); start++ {
|
for start := 0; start < len(input); start++ {
|
||||||
for end := start + 1; end <= len(input); end++ {
|
for end := start + 1; end <= len(input); end++ {
|
||||||
candidate = input[start:end]
|
candidate = input[start:end]
|
||||||
_ = runMarkdownBlock(candidate, params)
|
runner(candidate, params)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user