Skip to content

Commit

Permalink
Fix typo and use single-quotes for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
Petr Kotek committed Sep 29, 2016
1 parent 161dd98 commit a849fd6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/HTTP/MessageTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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')
);

Expand Down

0 comments on commit a849fd6

Please sign in to comment.