From c2e0f4d40c4dd18ad73ba6d48c55aad8459735ee Mon Sep 17 00:00:00 2001 From: yangzhi-rao Date: Sat, 27 Dec 2025 18:47:37 +0800 Subject: [PATCH] fix typo --- tests/commands/RouteCommandTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/commands/RouteCommandTest.php b/tests/commands/RouteCommandTest.php index eef2b84..993599c 100644 --- a/tests/commands/RouteCommandTest.php +++ b/tests/commands/RouteCommandTest.php @@ -101,7 +101,7 @@ PHP; { $app = @$this->newApp('test', '0.0.1'); $this->createIndexFile(); - $app->add(new RouteCommand(['subway' => ['index_root' => 'tests/commands/index.php']])); + $app->add(new RouteCommand(['runway' => ['index_root' => 'tests/commands/index.php']])); @$app->handle(['runway', 'routes']); $this->assertStringContainsString('Routes', file_get_contents(static::$ou));