From a849fd60d62548a8d3453ed40aee42e3ab3e9824 Mon Sep 17 00:00:00 2001 From: Petr Kotek Date: Thu, 29 Sep 2016 09:35:07 +0200 Subject: [PATCH] Fix typo and use single-quotes for consistency --- tests/HTTP/MessageTest.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/HTTP/MessageTest.php b/tests/HTTP/MessageTest.php index 78e5931..d832127 100644 --- a/tests/HTTP/MessageTest.php +++ b/tests/HTTP/MessageTest.php @@ -87,7 +87,7 @@ function testGetBodyWhenCallback() { * The request object should make sure to never emit more than * Content-Length, if Content-Length is set. * - * This is in particular useful when respoding to range requests with + * This is in particular useful when responding to range requests with * streams that represent files on the filesystem, as it's possible to just * seek the stream to a certain point, set the content-length and let the * request object do the rest. @@ -225,11 +225,11 @@ function testMultipleHeaders() { $message->addHeader('A', '2'); $this->assertEquals( - "1,2", + '1,2', $message->getHeader('A') ); $this->assertEquals( - "1,2", + '1,2', $message->getHeader('a') );