mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-01 14:30:32 +02:00
[ticket/12684] Fix tests
PHPBB3-12684
This commit is contained in:
committed by
Matt Friedman
parent
50761104ba
commit
df4a620ba1
@@ -50,7 +50,7 @@ class phpbb_console_command_user_add_test extends phpbb_database_test_case
|
||||
|
||||
$db = $this->db = $this->new_dbal();
|
||||
|
||||
$this->user = $this->getMock('\phpbb\user');
|
||||
$this->user = $this->getMock('\phpbb\user', array(), array('\phpbb\datetime'));
|
||||
$this->user->method('lang')->will($this->returnArgument(0));
|
||||
|
||||
$driver_helper = new \phpbb\passwords\driver\helper($this->config);
|
||||
@@ -90,7 +90,7 @@ class phpbb_console_command_user_add_test extends phpbb_database_test_case
|
||||
|
||||
$this->assertEquals(2, $this->get_user_id('Admin'));
|
||||
|
||||
$this->dialog->setInputStream($this->getInputStream("bar\npass\npass\nbar@test.com\n"));
|
||||
$this->dialog->setInputStream($this->getInputStream("bar\npassword\npassword\nbar@test.com\n"));
|
||||
|
||||
$command_tester->execute(array(
|
||||
'command' => $this->command_name,
|
||||
|
Reference in New Issue
Block a user