1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 05:50:42 +02:00

[ticket/11250] Fix method names

PHPBB3-11250
This commit is contained in:
Joas Schilling
2012-12-14 13:04:44 +01:00
parent 90a81a064b
commit bf312b5293

View File

@@ -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.');