We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e356de commit 2beb383Copy full SHA for 2beb383
tests/bundle/Functional/HttpOptionsTest.php
@@ -34,7 +34,7 @@ public function testHttpOptions(string $route, array $expectedMethods): void
34
35
self::assertHttpResponseHasHeader($response, 'Allow');
36
$actualMethods = explode(',', $response->getHeader('Allow')[0]);
37
- self::assertEquals($expectedMethods, $actualMethods);
+ self::assertEqualsCanonicalizing($expectedMethods, $actualMethods);
38
}
39
40
/**
0 commit comments