From 7df6e6cb631f8731ecc9d4c45342926ef218f667 Mon Sep 17 00:00:00 2001 From: Jennifer Mourek Date: Mon, 17 Oct 2016 14:57:30 +0200 Subject: [PATCH] UrlTest: Fix method name and PSR issue refs #12133 --- test/php/library/Icinga/Web/UrlTest.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/php/library/Icinga/Web/UrlTest.php b/test/php/library/Icinga/Web/UrlTest.php index e4648ba0d..56ac1eefc 100644 --- a/test/php/library/Icinga/Web/UrlTest.php +++ b/test/php/library/Icinga/Web/UrlTest.php @@ -9,7 +9,8 @@ use Icinga\Test\BaseTestCase; class UrlTest extends BaseTestCase { - public function testWhetherGetAbsoluteUrlReturnsTestUrl(){ + public function testWhetherGetAbsoluteUrlReturnsTheGivenUsernameAndPassword() + { $url = Url::fromPath('http://testusername:testpassword@testsite.com/path/to/my/url.html'); $this->assertEquals( 'http://testusername:testpassword@testsite.com/path/to/my/url.html',