[ticket/16904] Fix mentions test

PHPBB3-16904
This commit is contained in:
rxu 2021-11-24 11:45:57 +07:00
parent 428828a93d
commit 7b12c04bad
No known key found for this signature in database
GPG key ID: 14C89C9F50DA21E6

View file

@ -118,6 +118,6 @@ class mention_helper_test extends phpbb_database_test_case
*/
public function test_get_mentioned_user_ids($incoming_xml, $expected_result)
{
$this->assertSame($expected_result, $this->mention_helper->get_mentioned_user_ids($incoming_xml));
$this->assertEqualsCanonicalizing($expected_result, $this->mention_helper->get_mentioned_user_ids($incoming_xml));
}
}