From 22fd8feb4b93ee467e9911ddd44a904b969e95eb Mon Sep 17 00:00:00 2001 From: kenjis Date: Fri, 22 Sep 2023 16:48:29 +0900 Subject: [PATCH] test: update assertion --- tests/system/Commands/Utilities/Routes/FilterFinderTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/system/Commands/Utilities/Routes/FilterFinderTest.php b/tests/system/Commands/Utilities/Routes/FilterFinderTest.php index 09877c279c73..c59c9b9aee8e 100644 --- a/tests/system/Commands/Utilities/Routes/FilterFinderTest.php +++ b/tests/system/Commands/Utilities/Routes/FilterFinderTest.php @@ -183,7 +183,7 @@ public function testFindGlobalsAndRouteMultipleFilters(): void $expected = [ 'before' => ['csrf', 'honeypot', InvalidChars::class], - 'after' => ['honeypot', InvalidChars::class, 'toolbar'], + 'after' => [InvalidChars::class, 'honeypot', 'toolbar'], ]; $this->assertSame($expected, $filters); }