Skip to content

Commit 8a2856b

Browse files
committed
test: make test case a bit more realistic
1 parent c08de60 commit 8a2856b

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)