summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorSam Light <sam@lightscale.co.uk>2026-06-10 19:00:32 +0100
committerSam Light <sam@lightscale.co.uk>2026-06-10 19:00:32 +0100
commit0b6c1959528e97087ae1eb4bb098fdc8d689ce99 (patch)
tree0a5c7e3e94bd12a2785d1345d4f7f2f15c163453 /tests
parent60768eedcf8c630124b8469caa55b1f04e8d9e43 (diff)
fix typo
Diffstat (limited to 'tests')
-rw-r--r--tests/Unit/RouterTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Unit/RouterTest.php b/tests/Unit/RouterTest.php
index 5583c80..d55fbd2 100644
--- a/tests/Unit/RouterTest.php
+++ b/tests/Unit/RouterTest.php
@@ -151,7 +151,7 @@ it('finds any method route', function () {
expect($result)->toBeInstanceOf(RouteMatch::class);
});
-it('finds route method case insenitively', function () {
+it('finds route method case insensitive', function () {
$router = new Router();
$router->root()->child('testing')->addRoute(new Route(
HttpMethod::Get,