1
0
mirror of https://github.com/guzzle/guzzle.git synced 2025-02-24 01:53:58 +01:00

Fixing test

This commit is contained in:
Michael Dowling 2015-06-24 13:06:42 -07:00
parent d3ae72676a
commit 811c11a4e8

View File

@ -92,7 +92,7 @@ class ClientTest extends \PHPUnit_Framework_TestCase
]); ]);
$client->request('GET', new Uri('baz')); $client->request('GET', new Uri('baz'));
$this->assertEquals( $this->assertEquals(
'http://bar.com/bar/baz', 'http://foo.com/bar/baz',
(string) $mock->getLastRequest()->getUri() (string) $mock->getLastRequest()->getUri()
); );
} }