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

Commit

Permalink
zendframework/zendframework#6959 - fixed assertion (we are checking s…
Browse files Browse the repository at this point in the history
…pecifically for the encoding type)
  • Loading branch information
Ocramius committed Dec 16, 2014
1 parent 963b12a commit 0f0718d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/ClientTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -415,6 +415,8 @@ public function testClientRequestMethod()

$client = new Client;
$client->setAdapter('Zend\Http\Client\Adapter\Test');
$this->assertInstanceOf('Zend\Http\Response', $client->send($request));
$client->send($request);

$this->assertSame(Client::ENC_URLENCODED, $client->getEncType());
}
}

0 comments on commit 0f0718d

Please sign in to comment.