aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorJoshyPHP <s9e.dev@gmail.com>2015-05-30 23:51:09 +0200
committerJoshyPHP <s9e.dev@gmail.com>2015-05-30 23:51:09 +0200
commit433021f429f22dfd6d5dfc16c11195b19a488161 (patch)
treebd476ff6221980d055e72023b19d1d730291a604 /tests
parentb69e33c2b0dfaaf9274e783cd189a8d1d49bce07 (diff)
downloadforums-433021f429f22dfd6d5dfc16c11195b19a488161.tar
forums-433021f429f22dfd6d5dfc16c11195b19a488161.tar.gz
forums-433021f429f22dfd6d5dfc16c11195b19a488161.tar.bz2
forums-433021f429f22dfd6d5dfc16c11195b19a488161.tar.xz
forums-433021f429f22dfd6d5dfc16c11195b19a488161.zip
[ticket/13901] Fixed test's expected result
PHPBB3-13901
Diffstat (limited to 'tests')
-rw-r--r--tests/functional/private_messages_test.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functional/private_messages_test.php b/tests/functional/private_messages_test.php
index 3f602d62fb..be584c20c1 100644
--- a/tests/functional/private_messages_test.php
+++ b/tests/functional/private_messages_test.php
@@ -84,7 +84,7 @@ class phpbb_functional_private_messages_test extends phpbb_functional_test_case
public function test_quote_forward()
{
$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();
$message_id = $this->create_private_message('Test', $text, array(2));