diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2014-09-22 13:59:59 +0200 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2014-09-22 13:59:59 +0200 |
commit | 729bef85463490cebd41160e3a111954f63a1638 (patch) | |
tree | 9d33fdc3a0c5f05f50399674c2adafee04045864 /Http/Tests/EntryPoint/RetryAuthenticationEntryPointTest.php | |
parent | de26fac7a2ca06f784ff0b19742878b2107b5643 (diff) | |
parent | 133d64ad84f9e37d681c70db8a05743fa2001e11 (diff) | |
download | symfony-security-729bef85463490cebd41160e3a111954f63a1638.zip symfony-security-729bef85463490cebd41160e3a111954f63a1638.tar.gz symfony-security-729bef85463490cebd41160e3a111954f63a1638.tar.bz2 |
Merge branch '2.5'
* 2.5:
added missing use statements
added missing use statement
added missing use statement
fixed CS
[Process] fixed some volatile tests
[HttpKernel] fixed a volatile test
[HttpFoundation] fixed some volatile tests
[Tests] PHPUnit Optimizations
Use getPathname() instead of string casting to get BinaryFileReponse file path
Conflicts:
src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/ConfigurationTest.php
src/Symfony/Bundle/TwigBundle/Tests/DependencyInjection/Fixtures/php/full.php
src/Symfony/Component/Debug/Tests/Exception/FlattenExceptionTest.php
src/Symfony/Component/HttpFoundation/Tests/BinaryFileResponseTest.php
src/Symfony/Component/Process/Process.php
src/Symfony/Component/Stopwatch/Stopwatch.php
src/Symfony/Component/Validator/Constraints/AbstractComparisonValidator.php
src/Symfony/Component/Validator/Tests/Constraints/GreaterThanOrEqualValidatorTest.php
src/Symfony/Component/Yaml/Parser.php
src/Symfony/Component/Yaml/Tests/InlineTest.php
Diffstat (limited to 'Http/Tests/EntryPoint/RetryAuthenticationEntryPointTest.php')
-rw-r--r-- | Http/Tests/EntryPoint/RetryAuthenticationEntryPointTest.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Http/Tests/EntryPoint/RetryAuthenticationEntryPointTest.php b/Http/Tests/EntryPoint/RetryAuthenticationEntryPointTest.php index f4e5425..ff5fbc2 100644 --- a/Http/Tests/EntryPoint/RetryAuthenticationEntryPointTest.php +++ b/Http/Tests/EntryPoint/RetryAuthenticationEntryPointTest.php @@ -39,26 +39,26 @@ class RetryAuthenticationEntryPointTest extends \PHPUnit_Framework_TestCase 80, 443, Request::create('http://localhost/foo/bar?baz=bat'), - 'https://localhost/foo/bar?baz=bat' + 'https://localhost/foo/bar?baz=bat', ), array( 80, 443, Request::create('https://localhost/foo/bar?baz=bat'), - 'http://localhost/foo/bar?baz=bat' + 'http://localhost/foo/bar?baz=bat', ), array( 80, 123, Request::create('http://localhost/foo/bar?baz=bat'), - 'https://localhost:123/foo/bar?baz=bat' + 'https://localhost:123/foo/bar?baz=bat', ), array( 8080, 443, Request::create('https://localhost/foo/bar?baz=bat'), - 'http://localhost:8080/foo/bar?baz=bat' - ) + 'http://localhost:8080/foo/bar?baz=bat', + ), ); } } |