Skip to content

Commit 82b643d

Browse files
chrysanthosgithub-actions[bot]
authored andcommitted
formatting
1 parent 38d40f4 commit 82b643d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/RouteCoverageTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
use Chrysanthos\LaravelOtp\Support\OtpService;
44

55
it('wildcard paths allows all routes', function () {
6-
$service = new OtpService();
6+
$service = new OtpService;
77
$this->app['config']->set('otp.paths', ['*']);
88

99
$this->assertTrue($service->shouldCoverRoutePath('/test'));
@@ -13,7 +13,7 @@
1313
});
1414

1515
it('only defined paths are checked', function () {
16-
$service = new OtpService();
16+
$service = new OtpService;
1717
$this->app['config']->set('otp.paths', ['/login']);
1818

1919
$this->assertFalse($service->shouldCoverRoutePath('/test'));

0 commit comments

Comments
 (0)