diff --git a/testing/http_authentication.rst b/testing/http_authentication.rst index 8272d086d3f..8d5d37970cf 100644 --- a/testing/http_authentication.rst +++ b/testing/http_authentication.rst @@ -30,14 +30,16 @@ firewall, but only in the configuration file used by tests: # app/config/config_test.yml security: firewalls: - your_firewall_name: + # replace 'main' by the name of your own firewall + main: http_basic: ~ .. code-block:: xml - + + @@ -47,7 +49,8 @@ firewall, but only in the configuration file used by tests: // app/config/config_test.php $container->loadFromExtension('security', array( 'firewalls' => array( - 'your_firewall_name' => array( + // replace 'main' by the name of your own firewall + 'main' => array( 'http_basic' => array(), ), ),