This commit is contained in:
Fabien Potencier 2020-08-28 18:19:28 +02:00
parent 03d494ddde
commit 4dc9ac0acc

View File

@ -554,6 +554,6 @@ trait PolyfillAssertTrait
*/ */
public static function assertDoesNotMatchRegularExpression($pattern, $string, $message = '') public static function assertDoesNotMatchRegularExpression($pattern, $string, $message = '')
{ {
static::assertNotRegExp($message, $string, $message); static::assertNotRegExp($pattern, $string, $message);
} }
} }