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 febb132 commit d3814d8Copy full SHA for d3814d8
tests/VapidKeysGenerateCommandTest.php
@@ -46,7 +46,7 @@ public function it_can_generate_and_set_vapid_keys()
46
47
$envContents = file_get_contents($envPath);
48
49
- $this->assertRegExp('/^VAPID_PUBLIC_KEY=/m', $envContents);
50
- $this->assertRegExp('/^VAPID_PRIVATE_KEY=/m', $envContents);
+ $this->assertMatchesRegularExpression('/^VAPID_PUBLIC_KEY=/m', $envContents);
+ $this->assertMatchesRegularExpression('/^VAPID_PRIVATE_KEY=/m', $envContents);
51
}
52
0 commit comments