1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-05 16:27:38 +02:00

[ticket/9626] Add missing class prefix.

PHPBB3-9626
This commit is contained in:
Andreas Fischer
2010-05-17 10:28:44 +02:00
parent 6a5ad05d8a
commit 646b16f5db
4 changed files with 6 additions and 6 deletions

View File

@@ -30,9 +30,9 @@ class phpbb_regex_all_tests
{
$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;
}