From 3896b729c165ada5c51a2b80ac864e4d3c88698f Mon Sep 17 00:00:00 2001 From: Yannick Warnier Date: Fri, 13 Mar 2015 19:21:06 -0500 Subject: [PATCH] Minor - Update unit test to avoid error --- tests/phpunit/classes/UserManagerTest.lib.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/phpunit/classes/UserManagerTest.lib.php b/tests/phpunit/classes/UserManagerTest.lib.php index e3caaf15c0..df3635e8de 100755 --- a/tests/phpunit/classes/UserManagerTest.lib.php +++ b/tests/phpunit/classes/UserManagerTest.lib.php @@ -42,7 +42,7 @@ class UserManagerTest extends PHPUnit_Framework_TestCase } /** - * Generated from @assert ('Pippin','Took',null,null,'jo','jo') === false. + * Generated from @assert ('Pippin','Took',5,null,'jo','jo') === false. * * @covers UserManager::create_user */ @@ -50,7 +50,7 @@ class UserManagerTest extends PHPUnit_Framework_TestCase { $this->assertSame( false, - UserManager::create_user('Pippin','Brandybuck',null,null,'jo','jo') + UserManager::create_user('Pippin','Brandybuck',5,null,'jo','jo') ); } /** @@ -62,7 +62,7 @@ class UserManagerTest extends PHPUnit_Framework_TestCase $_configuration[1]['hosting_limit_users'] = 50; $this->assertSame( false, - UserManager::create_user('Merry','Brandybuck',null,null,'jo','jo') + UserManager::create_user('Merry','Brandybuck',5,null,'jo','jo') ); } /**