Skip to content
This repository has been archived by the owner on Jan 31, 2020. It is now read-only.

Commit

Permalink
Merge remote-tracking branch 'prolic/uri-renamed-interfaces'
Browse files Browse the repository at this point in the history
  • Loading branch information
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/Helper/Navigation/SitemapTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -238,8 +238,8 @@ public function testSetServerUrlRequiresValidUri()
try {
$this->_helper->setServerUrl('site.example.org');
$this->fail('An invalid server URL was given, but a ' .
'Zend\URI\Exception was not thrown');
} catch (\Zend\URI\Exception $e) {
'Zend\URI\Exception\ExceptionInterface was not thrown');
} catch (\Zend\URI\Exception\ExceptionInterface $e) {
$this->assertContains('Illegal scheme', $e->getMessage());
}
}
Expand Down

0 comments on commit dbb710f

Please sign in to comment.