diff options
author | Andreas Fischer <bantu@phpbb.com> | 2010-05-17 10:28:44 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2010-05-25 12:08:51 +0200 |
commit | 646b16f5db0ce68c69b520670b366dd61bfa03c1 (patch) | |
tree | 2fe5d270e31de8e71758a8d52bf44a9d4bca90a0 /tests/regex/all_tests.php | |
parent | 6a5ad05d8a15c0d4f6be2413190c5a2fdc270f5d (diff) | |
download | forums-646b16f5db0ce68c69b520670b366dd61bfa03c1.tar forums-646b16f5db0ce68c69b520670b366dd61bfa03c1.tar.gz forums-646b16f5db0ce68c69b520670b366dd61bfa03c1.tar.bz2 forums-646b16f5db0ce68c69b520670b366dd61bfa03c1.tar.xz forums-646b16f5db0ce68c69b520670b366dd61bfa03c1.zip |
[ticket/9626] Add missing class prefix.
PHPBB3-9626
Diffstat (limited to 'tests/regex/all_tests.php')
-rw-r--r-- | tests/regex/all_tests.php | 6 |
1 files changed, 3 insertions, 3 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; } |