We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3dd63db commit d90bad9Copy full SHA for d90bad9
src/Browser/Test/LegacyExtension.php
@@ -122,7 +122,7 @@ private static function normalizeTestName(string $name): string
122
\preg_match('#^(?<test>[\w:\\\]+) with data set "(?<dataset>.*)"#', $name, $matches);
123
}
124
125
- $normalized = \strtr($matches['test'], '\\:', '-_');
+ $normalized = \strtr($matches['test'], '\\:', '-_'); // @phpstan-ignore-line
126
127
if (isset($matches['dataset'])) {
128
$normalized .= '__data-set-'.\preg_replace('/\W+/', '-', $matches['dataset']);
0 commit comments