mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
[ticket/9626] Add missing class prefix.
PHPBB3-9626
This commit is contained in:
parent
6a5ad05d8a
commit
646b16f5db
4 changed files with 6 additions and 6 deletions
|
@ -30,9 +30,9 @@ class phpbb_regex_all_tests
|
||||||
{
|
{
|
||||||
$suite = new PHPUnit_Framework_TestSuite('phpBB Regular Expressions');
|
$suite = new PHPUnit_Framework_TestSuite('phpBB Regular Expressions');
|
||||||
|
|
||||||
$suite->addTestSuite('phpbb_email_test');
|
$suite->addTestSuite('phpbb_regex_email_test');
|
||||||
$suite->addTestSuite('phpbb_ipv4_test');
|
$suite->addTestSuite('phpbb_regex_ipv4_test');
|
||||||
$suite->addTestSuite('phpbb_ipv6_test');
|
$suite->addTestSuite('phpbb_regex_ipv6_test');
|
||||||
|
|
||||||
return $suite;
|
return $suite;
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
require_once 'test_framework/framework.php';
|
require_once 'test_framework/framework.php';
|
||||||
require_once '../phpBB/includes/functions.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;
|
protected $regex;
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
require_once 'test_framework/framework.php';
|
require_once 'test_framework/framework.php';
|
||||||
require_once '../phpBB/includes/functions.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;
|
protected $regex;
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
require_once 'test_framework/framework.php';
|
require_once 'test_framework/framework.php';
|
||||||
require_once '../phpBB/includes/functions.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;
|
protected $regex;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue