1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-03-21 08:00:46 +01:00

Merge branch '3.2.x'

* 3.2.x:
  [ticket/15222] Fix a typo in generate_text_for_display_test.php
This commit is contained in:
Tristan Darricau 2017-05-08 14:52:00 +02:00
commit 0af7fc6e08
No known key found for this signature in database
GPG Key ID: 817043C2E29DB881

View File

@ -100,7 +100,7 @@ class phpbb_text_processing_generate_text_for_display_test extends phpbb_test_ca
$renderer->set_viewcensors(false);
$this->assertSame('apple', $renderer->render($original));
$this->assertSame('banana', generate_text_for_display($original, '', '', 0, truee));
$this->assertSame('banana', generate_text_for_display($original, '', '', 0, true));
$this->assertSame('apple', $renderer->render($original), 'The original setting was not restored');
}