diff --git a/tests/AttributeTests/GetAttributeTest.php b/tests/AttributeTests/GetAttributeTest.php index b72ee32..27c5ff3 100644 --- a/tests/AttributeTests/GetAttributeTest.php +++ b/tests/AttributeTests/GetAttributeTest.php @@ -3,8 +3,8 @@ namespace Spatie\RouteAttributes\Tests\AttributeTests; use Spatie\RouteAttributes\Tests\TestCase; -use Spatie\RouteAttributes\Tests\TestClasses\Controllers\GetTestController; use Spatie\RouteAttributes\Tests\TestClasses\Controllers\GetMultipleTestController; +use Spatie\RouteAttributes\Tests\TestClasses\Controllers\GetTestController; class GetAttributeTest extends TestCase { @@ -26,6 +26,7 @@ public function it_can_register_multiple_get_routes() $this ->assertRegisteredRoutesCount(2) ->assertRouteRegistered(GetMultipleTestController::class, 'myGetMethod', 'get', 'my-get-method') - ->assertRouteRegistered(GetMultipleTestController::class, 'myGetMethod', 'get', 'my-other-get-method');; + ->assertRouteRegistered(GetMultipleTestController::class, 'myGetMethod', 'get', 'my-other-get-method'); + ; } }