File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/Symfony/Component/HttpFoundation/Tests Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -52,18 +52,18 @@ public function testGetLocale()
52
52
53
53
public function testGetUser ()
54
54
{
55
- $ request = Request::create ('http://user_test:password_test @test.com/ ' );
55
+ $ request = Request::create ('http://user:password @test.com ' );
56
56
$ user = $ request ->getUser ();
57
57
58
- $ this ->assertEquals ('user_test ' , $ user );
58
+ $ this ->assertEquals ('user ' , $ user );
59
59
}
60
60
61
61
public function testGetPassword ()
62
62
{
63
- $ request = Request::create ('http://user_test:password_test @test.com/ ' );
63
+ $ request = Request::create ('http://user:password @test.com ' );
64
64
$ password = $ request ->getPassword ();
65
65
66
- $ this ->assertEquals ('password_test ' , $ password );
66
+ $ this ->assertEquals ('password ' , $ password );
67
67
}
68
68
69
69
public function testIsNoCache ()
You can’t perform that action at this time.
0 commit comments