Skip to content

Commit 2beb383

Browse files
committed
Fix tests
1 parent 3e356de commit 2beb383

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/bundle/Functional/HttpOptionsTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public function testHttpOptions(string $route, array $expectedMethods): void
3434

3535
self::assertHttpResponseHasHeader($response, 'Allow');
3636
$actualMethods = explode(',', $response->getHeader('Allow')[0]);
37-
self::assertEquals($expectedMethods, $actualMethods);
37+
self::assertEqualsCanonicalizing($expectedMethods, $actualMethods);
3838
}
3939

4040
/**

0 commit comments

Comments
 (0)