mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-02 06:51:08 +02:00
[ticket/11700] Use underscores for generated search test wrappers
PHPBB3-11700
This commit is contained in:
@@ -11,7 +11,7 @@ abstract class phpbb_search_test_case extends phpbb_database_test_case
|
|||||||
{
|
{
|
||||||
static protected function get_search_wrapper($class)
|
static protected function get_search_wrapper($class)
|
||||||
{
|
{
|
||||||
$wrapped = $class . '_wrapper';
|
$wrapped = str_replace('\\', '_', $class) . '_wrapper';
|
||||||
if (!class_exists($wrapped))
|
if (!class_exists($wrapped))
|
||||||
{
|
{
|
||||||
$code = "
|
$code = "
|
||||||
|
Reference in New Issue
Block a user