diff options
author | Marc Alexander <admin@m-a-styles.de> | 2019-12-06 07:03:30 +0100 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2019-12-06 07:03:30 +0100 |
commit | 41918b8afa031806b36dd20b6ee44a915033b8df (patch) | |
tree | 875f3860d397ddae4bb37b871ec2bd4e4c73a2a9 /tests/functional | |
parent | 3002cee42a922c0c90788aa9a8da5ad274773b6a (diff) | |
parent | e6c45623eaa5023d6372303158aa976a7e945626 (diff) | |
download | forums-41918b8afa031806b36dd20b6ee44a915033b8df.tar forums-41918b8afa031806b36dd20b6ee44a915033b8df.tar.gz forums-41918b8afa031806b36dd20b6ee44a915033b8df.tar.bz2 forums-41918b8afa031806b36dd20b6ee44a915033b8df.tar.xz forums-41918b8afa031806b36dd20b6ee44a915033b8df.zip |
Merge pull request #5768 from 3D-I/ticket/16247
[ticket/16247] Quote PM has no identifier
Diffstat (limited to 'tests/functional')
-rw-r--r-- | tests/functional/private_messages_test.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functional/private_messages_test.php b/tests/functional/private_messages_test.php index 7fda26fb49..ce709524a9 100644 --- a/tests/functional/private_messages_test.php +++ b/tests/functional/private_messages_test.php @@ -85,7 +85,7 @@ class phpbb_functional_private_messages_test extends phpbb_functional_test_case public function test_quote_pm() { $text = 'This is a test private message sent by the testing framework.'; - $expected = "(\\[quote=admin time=\\d+ user_id=2\\]\n" . $text . "\n\\[/quote\\])"; + $expected = "(\\[quote=admin msg_id=\\d+ time=\\d+ user_id=2\\]\n" . $text . "\n\\[/quote\\])"; $this->login(); $message_id = $this->create_private_message('Test', $text, array(2)); |