UrlTest: Fix skipped test

This commit is contained in:
Johannes Meyer 2017-01-23 14:59:58 +01:00
parent d246f76268
commit 59cadde485
1 changed files with 3 additions and 3 deletions

View File

@ -392,14 +392,14 @@ class UrlTest extends BaseTestCase
}
/**
* @depends testWhetherGetAbsoluteUrlReturnsTheAbsoluteUrlForHtmlAttributes
* @depends testWhetherGetAbsoluteUrlReturnsTheAbsoluteUrl
*/
public function testWhetherToStringConversionReturnsTheAbsoluteUrlForHtmlAttribures()
public function testWhetherToStringConversionReturnsTheAbsoluteUrlForHtmlAttributes()
{
$url = Url::fromPath('/my/test/url.html?param=val&param2=val2&param3=val3');
$this->assertEquals(
'my/test/url.html?param=val&param2=val2&param3=val3',
'/my/test/url.html?param=val&param2=val2&param3=val3',
(string) $url,
'Converting a url to string does not return the absolute url'
);