Skip to content

Commit 23728fc

Browse files
Update JWTTest.php
Updated JWTException & JWTAuth Import Paths
1 parent 9621308 commit 23728fc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/Auth/Provider/JWTTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
use Mockery as m;
1010
use Symfony\Component\HttpKernel\Exception\BadRequestHttpException;
1111
use Symfony\Component\HttpKernel\Exception\UnauthorizedHttpException;
12-
use Tymon\JWTAuth\Exceptions\JWTException;
12+
use PHPOpenSourceSaver\JWTAuth\Exceptions\JWTException;
1313

1414
class JWTTest extends BaseTestCase
1515
{
@@ -20,7 +20,7 @@ public function setUp(): void
2020
{
2121
parent::setUp();
2222

23-
$this->auth = m::mock('Tymon\JWTAuth\JWTAuth');
23+
$this->auth = m::mock('PHPOpenSourceSaver\JWTAuth\JWTAuth');
2424
$this->provider = new JWT($this->auth);
2525
}
2626

0 commit comments

Comments
 (0)