1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-03 21:15:42 +02:00

Merge branch 'develop-ascraeus' into develop

* develop-ascraeus:
  [ticket/12822] Correctly call \phpbb\user in avatar manager test
This commit is contained in:
Nils Adermann 2014-08-11 18:13:57 +02:00
commit 24dc0a66eb

View File

@ -91,7 +91,7 @@ class phpbb_avatar_manager_test extends \phpbb_database_test_case
// Set up avatar manager
$this->manager = new \phpbb\avatar\manager($this->config, $avatar_drivers, $phpbb_container);
$this->db = $this->new_dbal();
$this->user = new \phpbb\user();
$this->user = new \phpbb\user('\phpbb\datetime');
}
protected function avatar_drivers()