diff --git a/run-tests.php b/run-tests.php index e4a4563f93fc..dfb07a465bd5 100755 --- a/run-tests.php +++ b/run-tests.php @@ -3386,6 +3386,7 @@ public function markTestAs( $time = $time ?? $this->getTimer($file_name); $this->record($suite, 'execution_time', $time); + $formatted_time = number_format($time, 4, '.', ''); $escaped_details = htmlspecialchars($details, ENT_QUOTES, 'UTF-8'); $escaped_details = preg_replace_callback('/[\0-\x08\x0B\x0C\x0E-\x1F]/', function ($c) { @@ -3394,7 +3395,7 @@ public function markTestAs( $escaped_message = htmlspecialchars($message, ENT_QUOTES, 'UTF-8'); $escaped_test_name = htmlspecialchars($file_name . ' (' . $test_name . ')', ENT_QUOTES); - $this->rootSuite['files'][$file_name]['xml'] = "\n"; + $this->rootSuite['files'][$file_name]['xml'] = "\n"; if (is_array($type)) { $output_type = $type[0] . 'ED'; @@ -3439,7 +3440,7 @@ private function getTimer(string $file_name) } if (isset($this->rootSuite['files'][$file_name]['total'])) { - return number_format($this->rootSuite['files'][$file_name]['total'], 4); + return $this->rootSuite['files'][$file_name]['total']; } return 0;