mirror of
https://github.com/phpbb/phpbb.git
synced 2025-03-13 20:28:44 +01:00
[ticket/9626] Add missing class prefix.
PHPBB3-9626
This commit is contained in:
parent
6a5ad05d8a
commit
646b16f5db
@ -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;
|
||||
}
|
||||
|
@ -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;
|
||||
|
||||
|
@ -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;
|
||||
|
||||
|
@ -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;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user