diff options
author | JoshyPHP <s9e.dev@gmail.com> | 2015-05-15 02:12:52 +0200 |
---|---|---|
committer | JoshyPHP <s9e.dev@gmail.com> | 2015-05-15 02:12:52 +0200 |
commit | f7ad2c2b32b309edba006a8d4b58727b50642ea2 (patch) | |
tree | 247dbbe4bb98b5f287c7a1463260417ee13efc37 /tests/text_formatter/s9e | |
parent | f5ce9f273829ba470a1348b4314cddb58f552da0 (diff) | |
download | forums-f7ad2c2b32b309edba006a8d4b58727b50642ea2.tar forums-f7ad2c2b32b309edba006a8d4b58727b50642ea2.tar.gz forums-f7ad2c2b32b309edba006a8d4b58727b50642ea2.tar.bz2 forums-f7ad2c2b32b309edba006a8d4b58727b50642ea2.tar.xz forums-f7ad2c2b32b309edba006a8d4b58727b50642ea2.zip |
[ticket/13680] Renamed get_quote_authors to get_outermost_quote_authors
PHPBB3-13680
Diffstat (limited to 'tests/text_formatter/s9e')
-rw-r--r-- | tests/text_formatter/s9e/utils_test.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/text_formatter/s9e/utils_test.php b/tests/text_formatter/s9e/utils_test.php index 78e5869af1..b1b937709c 100644 --- a/tests/text_formatter/s9e/utils_test.php +++ b/tests/text_formatter/s9e/utils_test.php @@ -75,18 +75,18 @@ class phpbb_textformatter_s9e_utils_test extends phpbb_test_case } /** - * @dataProvider get_quote_authors_tests + * @dataProvider get_outermost_quote_authors_tests */ - public function test_get_quote_authors($original, $expected) + public function test_get_outermost_quote_authors($original, $expected) { $container = $this->get_test_case_helpers()->set_s9e_services(); $utils = $container->get('text_formatter.utils'); $parser = $container->get('text_formatter.parser'); - $this->assertSame($expected, $utils->get_quote_authors($parser->parse($original))); + $this->assertSame($expected, $utils->get_outermost_quote_authors($parser->parse($original))); } - public function get_quote_authors_tests() + public function get_outermost_quote_authors_tests() { return array( array( |