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 @@ -45,18 +45,18 @@ public function testGetLocale()
45
45
46
46
public function testGetUser ()
47
47
{
48
- $ request = Request::create ('http://user_test:password_test @test.com/ ' );
48
+ $ request = Request::create ('http://user:password @test.com ' );
49
49
$ user = $ request ->getUser ();
50
50
51
- $ this ->assertEquals ('user_test ' , $ user );
51
+ $ this ->assertEquals ('user ' , $ user );
52
52
}
53
53
54
54
public function testGetPassword ()
55
55
{
56
- $ request = Request::create ('http://user_test:password_test @test.com/ ' );
56
+ $ request = Request::create ('http://user:password @test.com ' );
57
57
$ password = $ request ->getPassword ();
58
58
59
- $ this ->assertEquals ('password_test ' , $ password );
59
+ $ this ->assertEquals ('password ' , $ password );
60
60
}
61
61
62
62
public function testIsNoCache ()
You can’t perform that action at this time.
0 commit comments