From ba574d216c6f027fee5efef36a8e8414ba60f170 Mon Sep 17 00:00:00 2001 From: lukinovec Date: Sun, 1 Jun 2025 17:10:00 +0200 Subject: [PATCH] Fix typo in CloneActionTest Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- tests/CloneActionTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/CloneActionTest.php b/tests/CloneActionTest.php index ddd747b5..b8cdd743 100644 --- a/tests/CloneActionTest.php +++ b/tests/CloneActionTest.php @@ -48,7 +48,7 @@ test('CloneRoutesAsTenant action clones routes correctly', function (Route|null } })->with([ null, // Clone all routes for which shouldBeCloned returns true - fn () => RouteFacade::get('/home', fn () => true)->name('home'), // THe only route that should be cloned + fn () => RouteFacade::get('/home', fn () => true)->name('home'), // The only route that should be cloned ]); test('all routes with any of the middleware specified in cloneRoutesWithMiddleware will be cloned by default', function(array $cloneRoutesWithMiddleware) {