Skip to content

Commit

Permalink
Add note about "failing" use case.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrubinsk committed Feb 5, 2015
1 parent c8bea04 commit adf40fb
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions framework/Core/test/Horde/Core/UrlTest.php
Expand Up @@ -403,6 +403,11 @@ public function testSelfUrl()
$GLOBALS['conf']['use_ssl'] = 2;
$GLOBALS['conf']['server']['port'] = 1234;
$this->assertEquals('http://example.com:1234/hordeurl/test/', Horde::selfUrl(false, true, true));

// This fails since the port is always ignored. Not sure if this is intended or not.
// $GLOBALS['conf']['use_ssl'] = 3;
// $GLOBALS['conf']['server']['port'] = 1234;
// $this->assertEquals('http://example.com:1234/hordeurl/test/', Horde::selfUrl(false, true, true));
}
}

Expand Down

0 comments on commit adf40fb

Please sign in to comment.