Skip to content
Snippets Groups Projects
Commit ecd10a55 authored by Janis Daniel Dähne's avatar Janis Daniel Dähne
Browse files

- fixed wrong checked var for debug output

parent 8c6a26fc
No related branches found
No related tags found
No related merge requests found
......@@ -339,7 +339,7 @@ foreach ($testCases as $test) {
require_once './do_compileTest_func.php';
$showTestRunnerDebugOutput = FALSE;
if (isset($config['maxLinesToRead'])) {
if (isset($config['showTestRunnerDebugOutput'])) {
$showTestRunnerDebugOutput = $config['showTestRunnerDebugOutput'];
}
......@@ -391,7 +391,7 @@ foreach ($testCases as $test) {
require_once './do_regexTest_func.php';
$showTestRunnerDebugOutput = FALSE;
if (isset($config['maxLinesToRead'])) {
if (isset($config['showTestRunnerDebugOutput'])) {
$showTestRunnerDebugOutput = $config['showTestRunnerDebugOutput'];
}
......@@ -548,7 +548,7 @@ foreach ($testCases as $test) {
$showTestRunnerDebugOutput = FALSE;
if (isset($config['maxLinesToRead'])) {
if (isset($config['showTestRunnerDebugOutput'])) {
$showTestRunnerDebugOutput = $config['showTestRunnerDebugOutput'];
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment