Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze authored and github-actions[bot] committed Nov 24, 2023
1 parent 7e25b05 commit 4769a07
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/AttributeTests/GetAttributeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand All @@ -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');
;
}
}

0 comments on commit 4769a07

Please sign in to comment.