Skip to content

Commit

Permalink
[ticket/9626] Add missing class prefix.
Browse files Browse the repository at this point in the history
PHPBB3-9626
  • Loading branch information
bantu committed May 25, 2010
1 parent 6a5ad05 commit 646b16f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions tests/regex/all_tests.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ public static function suite()
{
$suite = new PHPUnit_Framework_TestSuite('phpBB Regular Expressions');

$suite->addTestSuite('phpbb_email_test');
$suite->addTestSuite('phpbb_ipv4_test');
$suite->addTestSuite('phpbb_ipv6_test');
$suite->addTestSuite('phpbb_regex_email_test');
$suite->addTestSuite('phpbb_regex_ipv4_test');
$suite->addTestSuite('phpbb_regex_ipv6_test');

return $suite;
}
Expand Down
2 changes: 1 addition & 1 deletion tests/regex/email.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
require_once 'test_framework/framework.php';
require_once '../phpBB/includes/functions.php';

class phpbb_email_test extends phpbb_test_case
class phpbb_regex_email_test extends phpbb_test_case
{
protected $regex;

Expand Down
2 changes: 1 addition & 1 deletion tests/regex/ipv4.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
require_once 'test_framework/framework.php';
require_once '../phpBB/includes/functions.php';

class phpbb_ipv4_test extends phpbb_test_case
class phpbb_regex_ipv4_test extends phpbb_test_case
{
protected $regex;

Expand Down
2 changes: 1 addition & 1 deletion tests/regex/ipv6.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
require_once 'test_framework/framework.php';
require_once '../phpBB/includes/functions.php';

class phpbb_ipv6_test extends phpbb_test_case
class phpbb_regex_ipv6_test extends phpbb_test_case
{
protected $regex;

Expand Down

0 comments on commit 646b16f

Please sign in to comment.