10BC0
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 334b62a commit 9b7750aCopy full SHA for 9b7750a
src/Symfony/Bundle/SecurityBundle/Tests/DependencyInjection/CompleteConfigurationTest.php
@@ -81,6 +81,11 @@ public function testFirewalls()
81
$configs[] = array_values($configDef->getArguments());
82
}
83
84
+ // the IDs of the services are case sensitive or insensitive depending on
85
+ // the Symfony version. Transform them to lowercase to simplify tests.
86
+ $configs[0][2] = strtolower($configs[0][2]);
87
+ $configs[2][2] = strtolower($configs[2][2]);
88
+
89
$this->assertEquals(array(
90
array(
91
'simple',
0 commit comments