Fix broken tests

This commit is contained in:
Timothy Warren 2016-03-29 11:40:27 -04:00
parent 2dde6f8a7d
commit 06f07978dc
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ class HttpView extends BaseView {
public function setStatusCode($code)
{
$this->response = $this->response->withStatus($code)
->withProtocolVersion(1.1);
->withProtocolVersion('1.1');
return $this;
}