aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bbcode/parser_test.php
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2012-12-14 13:04:44 +0100
committerJoas Schilling <nickvergessen@gmx.de>2012-12-14 13:04:44 +0100
commitbf312b529384890e1e45a0b073277156b5ab4c5b (patch)
tree6692802810b596e2aa3d57263305a0e1dfcca458 /tests/bbcode/parser_test.php
parent90a81a064bd119792a2848c3699d1f1ec0ad1827 (diff)
downloadforums-bf312b529384890e1e45a0b073277156b5ab4c5b.tar
forums-bf312b529384890e1e45a0b073277156b5ab4c5b.tar.gz
forums-bf312b529384890e1e45a0b073277156b5ab4c5b.tar.bz2
forums-bf312b529384890e1e45a0b073277156b5ab4c5b.tar.xz
forums-bf312b529384890e1e45a0b073277156b5ab4c5b.zip
[ticket/11250] Fix method names
PHPBB3-11250
Diffstat (limited to 'tests/bbcode/parser_test.php')
-rw-r--r--tests/bbcode/parser_test.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/bbcode/parser_test.php b/tests/bbcode/parser_test.php
index ed55a69640..8f0aeab386 100644
--- a/tests/bbcode/parser_test.php
+++ b/tests/bbcode/parser_test.php
@@ -9,7 +9,7 @@
class phpbb_bbcode_parser_test extends PHPUnit_Framework_TestCase
{
- public function string_bbcode_data()
+ public function bbcode_firstpass_data()
{
return array(
// Default BBCodes from in their simplest way
@@ -192,9 +192,9 @@ class phpbb_bbcode_parser_test extends PHPUnit_Framework_TestCase
/**
- * @dataProvider string_bbcode_data
+ * @dataProvider bbcode_firstpass_data
*/
- public function test_firstpass($description, $message, $expected)
+ public function test_bbcode_firstpass($description, $message, $expected)
{
$this->markTestIncomplete('New bbcode parser has not been backported from feature/ascraeus-experiment yet.');