@@ -111,7 +111,7 @@ discard block |
||
111 | 111 | $expect = rtrim(execute_code($working_dir, $parsed_test['EXPECT'], $php_arguments, $script_arguments)); |
112 | 112 | if ($expect === $output) { |
113 | 113 | line("<g>$base_text SUCCESS</g>", true); |
114 | - isset($parsed_test['CLEAN']) && execute_code($working_dir, $parsed_test['CLEAN'], $php_arguments, $script_arguments);; |
|
114 | + isset($parsed_test['CLEAN']) && execute_code($working_dir, $parsed_test['CLEAN'], $php_arguments, $script_arguments); ; |
|
115 | 115 | return 'success'; |
116 | 116 | } |
117 | 117 | $expect = $parsed_test['EXPECT']; |
@@ -146,7 +146,7 @@ discard block |
||
146 | 146 | ); |
147 | 147 | if (preg_match("/^$regex\$/s", $output)) { |
148 | 148 | line("<g>$base_text SUCCESS</g>", true); |
149 | - isset($parsed_test['CLEAN']) && execute_code($working_dir, $parsed_test['CLEAN'], $php_arguments, $script_arguments);; |
|
149 | + isset($parsed_test['CLEAN']) && execute_code($working_dir, $parsed_test['CLEAN'], $php_arguments, $script_arguments); ; |
|
150 | 150 | return 'success'; |
151 | 151 | } |
152 | 152 | $expect = $parsed_test['EXPECTF']; |
@@ -155,7 +155,7 @@ discard block |
||
155 | 155 | $regex = preg_quote($expect, '/'); |
156 | 156 | if (preg_match("/^$regex\$/s", $output)) { |
157 | 157 | line("<g>$base_text SUCCESS</g>", true); |
158 | - isset($parsed_test['CLEAN']) && execute_code($working_dir, $parsed_test['CLEAN'], $php_arguments, $script_arguments);; |
|
158 | + isset($parsed_test['CLEAN']) && execute_code($working_dir, $parsed_test['CLEAN'], $php_arguments, $script_arguments); ; |
|
159 | 159 | return 'success'; |
160 | 160 | } |
161 | 161 | } |