diff options
author | Vinicius Cubas Brand <viniciuscb@gmail.com> | 2019-03-01 12:12:19 -0300 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2019-03-21 10:20:46 +0100 |
commit | c4dbc428f9677a03b3f873eaba9282cfd227d876 (patch) | |
tree | b584651a998097e05f8bbfb064d96f2cbf1bb25e /apps/user_ldap/tests/User_LDAPTest.php | |
parent | 651495e3ae549b4c029e2ca177a696fa9701ba4e (diff) | |
download | nextcloud-server-c4dbc428f9677a03b3f873eaba9282cfd227d876.tar.gz nextcloud-server-c4dbc428f9677a03b3f873eaba9282cfd227d876.zip |
fix user creation using LDAP Plugin
Signed-off-by: Vinicius Cubas Brand <viniciuscb@gmail.com>
Diffstat (limited to 'apps/user_ldap/tests/User_LDAPTest.php')
-rw-r--r-- | apps/user_ldap/tests/User_LDAPTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_ldap/tests/User_LDAPTest.php b/apps/user_ldap/tests/User_LDAPTest.php index 693159dc72b..f58c5f881f9 100644 --- a/apps/user_ldap/tests/User_LDAPTest.php +++ b/apps/user_ldap/tests/User_LDAPTest.php @@ -1422,7 +1422,7 @@ class User_LDAPTest extends TestCase { ->with('uid','password') ->willReturn('result'); - $this->assertEquals($this->backend->createUser('uid', 'password'),'result'); + $this->assertEquals($this->backend->createUser('uid', 'password'),true); } public function testCreateUserFailing() { |