aboutsummaryrefslogtreecommitdiffstats
path: root/tests/text_processing
diff options
context:
space:
mode:
Diffstat (limited to 'tests/text_processing')
-rw-r--r--tests/text_processing/censor_text_test.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/text_processing/censor_text_test.php b/tests/text_processing/censor_text_test.php
index ac620597b9..1d4b3fa943 100644
--- a/tests/text_processing/censor_text_test.php
+++ b/tests/text_processing/censor_text_test.php
@@ -78,6 +78,6 @@ class phpbb_text_processing_censor_text_test extends phpbb_test_case
public function test_censor_text($input, $expected)
{
$label = 'Testing word censor: ' . $input;
- $this->assertEquals(censor_text($input), $expected, $label);
+ $this->assertEquals($expected, censor_text($input), $label);
}
}