fix test Case Name starts with a P

This commit is contained in:
faissaloux
2023-03-19 17:46:49 +00:00
parent 7e1c769d1c
commit 54fd188299

View File

@ -277,7 +277,7 @@ trait Testable
*/ */
public static function getPrintableTestCaseName(): string public static function getPrintableTestCaseName(): string
{ {
return ltrim(self::class, 'P\\'); return preg_replace('/P\\\/', '', self::class, 1);
} }
/** /**