[ticket/13901] Fixed test's expected result

PHPBB3-13901
This commit is contained in:
JoshyPHP 2015-05-30 23:51:09 +02:00
parent b69e33c2b0
commit 433021f429

View file

@ -84,7 +84,7 @@ class phpbb_functional_private_messages_test extends phpbb_functional_test_case
public function test_quote_forward() public function test_quote_forward()
{ {
$text = 'This is a test private message sent by the testing framework.'; $text = 'This is a test private message sent by the testing framework.';
$expected = '[quote="admin"]' . $text . '[/quote]'; $expected = "[quote=\"admin\"]\n" . $text . "\n[/quote]";
$this->login(); $this->login();
$message_id = $this->create_private_message('Test', $text, array(2)); $message_id = $this->create_private_message('Test', $text, array(2));