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

Commit

Permalink
Merge pull request zendframework/zendframework#2114 from weierophinne…
Browse files Browse the repository at this point in the history
…y/hotfix/tests

Fixes to tests based on URI changes
  • Loading branch information
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/Server/ClientTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ public function testRpcMethodCallThrowsOnJsonRpcFault()

public function testSettingUriOnHttpClientIsNotOverwrittenByJsonRpcClient()
{
$changedUri = 'http://bar:80';
$changedUri = 'http://bar:80/';
// Overwrite: http://foo:80
$this->setServerResponseTo(null);
$this->jsonClient->getHttpClient()->setUri($changedUri);
Expand All @@ -184,7 +184,7 @@ public function testSettingUriOnHttpClientIsNotOverwrittenByJsonRpcClient()

public function testSettingNoHttpClientUriForcesClientToSetUri()
{
$baseUri = 'http://foo:80';
$baseUri = 'http://foo:80/';
$this->httpAdapter = new TestAdapter();
$this->httpClient = new HttpClient(null, array('adapter' => $this->httpAdapter));

Expand Down

0 comments on commit 9aba77c

Please sign in to comment.