From bb6a98344990d6ab6fc0acfb50e15b644284d799 Mon Sep 17 00:00:00 2001 From: Pascal Thesing Date: Mon, 8 Feb 2021 12:17:59 +0100 Subject: [PATCH] Replace double points with two double points for copy and past --- src/SpeedTrapListener.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SpeedTrapListener.php b/src/SpeedTrapListener.php index 9c151dd..f34bcd4 100644 --- a/src/SpeedTrapListener.php +++ b/src/SpeedTrapListener.php @@ -155,7 +155,7 @@ protected function toMilliseconds(float $time): int */ protected function makeLabel(TestCase $test): string { - return sprintf('%s:%s', get_class($test), $test->getName()); + return sprintf('%s::%s', get_class($test), $test->getName()); } /**