Skip to content

Commit ca76a09

Browse files
authored
Merge pull request #6686 from kenjis/fix-MessageTest
test: make test case in MessageTest a bit more realistic
2 parents c08de60 + 8a2856b commit ca76a09

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/system/HTTP/MessageTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,9 +154,9 @@ public function testAppendBody()
154154
{
155155
$this->message->setBody('moo');
156156

157-
$this->message->appendBody('\n');
157+
$this->message->appendBody("\n");
158158

159-
$this->assertSame('moo\n', $this->message->getBody());
159+
$this->assertSame("moo\n", $this->message->getBody());
160160
}
161161

162162
public function testSetHeaderReplacingHeader()

0 commit comments

Comments
 (0)