summaryrefslogtreecommitdiffstats
path: root/Http/Tests/EntryPoint
diff options
context:
space:
mode:
authorWouterJ <waldio.webdesign@gmail.com>2015-11-07 18:29:53 +0100
committerWouterJ <waldio.webdesign@gmail.com>2015-11-07 18:34:16 +0100
commitb78eacaa57a9b0171fd4817b99510ab15f60d778 (patch)
treec6d7b18a19d39a5c808827e8a64b2c410523c292 /Http/Tests/EntryPoint
parent18ad89207b012a47457f4d0d7c6aaa57cb1f926c (diff)
downloadsymfony-security-b78eacaa57a9b0171fd4817b99510ab15f60d778.zip
symfony-security-b78eacaa57a9b0171fd4817b99510ab15f60d778.tar.gz
symfony-security-b78eacaa57a9b0171fd4817b99510ab15f60d778.tar.bz2
Renamed key to secretv2.8.0-BETA1
Diffstat (limited to 'Http/Tests/EntryPoint')
-rw-r--r--Http/Tests/EntryPoint/DigestAuthenticationEntryPointTest.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/Http/Tests/EntryPoint/DigestAuthenticationEntryPointTest.php b/Http/Tests/EntryPoint/DigestAuthenticationEntryPointTest.php
index 181e340..4082986 100644
--- a/Http/Tests/EntryPoint/DigestAuthenticationEntryPointTest.php
+++ b/Http/Tests/EntryPoint/DigestAuthenticationEntryPointTest.php
@@ -23,7 +23,7 @@ class DigestAuthenticationEntryPointTest extends \PHPUnit_Framework_TestCase
$authenticationException = new AuthenticationException('TheAuthenticationExceptionMessage');
- $entryPoint = new DigestAuthenticationEntryPoint('TheRealmName', 'TheKey');
+ $entryPoint = new DigestAuthenticationEntryPoint('TheRealmName', 'TheSecret');
$response = $entryPoint->start($request, $authenticationException);
$this->assertEquals(401, $response->getStatusCode());
@@ -34,7 +34,7 @@ class DigestAuthenticationEntryPointTest extends \PHPUnit_Framework_TestCase
{
$request = $this->getMock('Symfony\Component\HttpFoundation\Request');
- $entryPoint = new DigestAuthenticationEntryPoint('TheRealmName', 'TheKey');
+ $entryPoint = new DigestAuthenticationEntryPoint('TheRealmName', 'TheSecret');
$response = $entryPoint->start($request);
$this->assertEquals(401, $response->getStatusCode());
@@ -47,7 +47,7 @@ class DigestAuthenticationEntryPointTest extends \PHPUnit_Framework_TestCase
$nonceExpiredException = new NonceExpiredException('TheNonceExpiredExceptionMessage');
- $entryPoint = new DigestAuthenticationEntryPoint('TheRealmName', 'TheKey');
+ $entryPoint = new DigestAuthenticationEntryPoint('TheRealmName', 'TheSecret');
$response = $entryPoint->start($request, $nonceExpiredException);
$this->assertEquals(401, $response->getStatusCode());