mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
[ticket/11700] Use underscores for generated search test wrappers
PHPBB3-11700
This commit is contained in:
parent
2a1207b14f
commit
d122d84050
1 changed files with 1 additions and 1 deletions
|
@ -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 = "
|
||||||
|
|
Loading…
Add table
Reference in a new issue