[ticket/12113] Fix view_log() tests

PHPBB3-12113
This commit is contained in:
Joas Schilling 2014-04-01 23:10:29 +02:00
parent f471831916
commit 2fcfca7369
2 changed files with 6 additions and 1 deletions

View file

@ -44,7 +44,7 @@ class phpbb_log_function_view_log_test extends phpbb_database_test_case
'topic_id' => 0,
'viewforum' => '',
'action' => 'installed: 3.1.0-dev',
'action' => 'LOG_INSTALL_INSTALLED 3.1.0-dev',
),
2 => array(
'id' => 2,

View file

@ -46,4 +46,9 @@ class phpbb_mock_user
}
return false;
}
public function lang()
{
return implode(' ', func_get_args());
}
}