aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2010-05-17 10:28:44 +0200
committerAndreas Fischer <bantu@phpbb.com>2010-05-25 12:08:51 +0200
commit646b16f5db0ce68c69b520670b366dd61bfa03c1 (patch)
tree2fe5d270e31de8e71758a8d52bf44a9d4bca90a0
parent[ticket/9626] A few tests for the email regular expression. (diff)
downloadphpbb-646b16f5db0ce68c69b520670b366dd61bfa03c1.tar.gz
phpbb-646b16f5db0ce68c69b520670b366dd61bfa03c1.tar.bz2
phpbb-646b16f5db0ce68c69b520670b366dd61bfa03c1.zip
[ticket/9626] Add missing class prefix.
PHPBB3-9626
-rw-r--r--tests/regex/all_tests.php6
-rw-r--r--tests/regex/email.php2
-rw-r--r--tests/regex/ipv4.php2
-rw-r--r--tests/regex/ipv6.php2
4 files changed, 6 insertions, 6 deletions
diff --git a/tests/regex/all_tests.php b/tests/regex/all_tests.php
index 0e193620e1..f2a23a0f98 100644
--- a/tests/regex/all_tests.php
+++ b/tests/regex/all_tests.php
@@ -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;
}
diff --git a/tests/regex/email.php b/tests/regex/email.php
index 37fb9d81d0..b1519dfa5f 100644
--- a/tests/regex/email.php
+++ b/tests/regex/email.php
@@ -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;
diff --git a/tests/regex/ipv4.php b/tests/regex/ipv4.php
index 5ffc700831..9d131ad0ca 100644
--- a/tests/regex/ipv4.php
+++ b/tests/regex/ipv4.php
@@ -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;
diff --git a/tests/regex/ipv6.php b/tests/regex/ipv6.php
index 3f62f65f49..3d7a72e492 100644
--- a/tests/regex/ipv6.php
+++ b/tests/regex/ipv6.php
@@ -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;