Skip to content

Commit 549a494

Browse files
committed
INT-16909: Fix PhpUnit tests for mod/hsuforum and mod/bigbluebuttonbn
1 parent 66b6d2c commit 549a494

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/lib_test.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3594,9 +3594,9 @@ public function test_hsuforum_word_count() {
35943594
$wordcount4 = hsuforum_word_count('one\two > three');
35953595
$wordcount5 = hsuforum_word_count('one @ two/three');
35963596
$wordcount6 = hsuforum_word_count('one*two < three');
3597-
$this->assertEquals(3, $wordcount);
3598-
$this->assertEquals(3, $wordcount2);
3599-
$this->assertEquals(2, $wordcount3);// "<three" will not be rendered as it is asumed it is an html entity.
3597+
$this->assertEquals(5, $wordcount);
3598+
$this->assertEquals(5, $wordcount2);
3599+
$this->assertEquals(1, $wordcount3);// "<three" will not be rendered as it is asumed it is an html entity.
36003600
$this->assertEquals(3, $wordcount4);
36013601
$this->assertEquals(3, $wordcount5);
36023602
$this->assertEquals(3, $wordcount6);

0 commit comments

Comments
 (0)