fix ldap test

This commit is contained in:
Girish Ramakrishnan
2016-02-09 08:52:16 -08:00
parent 451c410547
commit 49cbea93fb
3 changed files with 10 additions and 4 deletions

View File

@@ -34,8 +34,8 @@ function setup(done) {
database.initialize.bind(null),
database._clear.bind(null),
ldapServer.start.bind(null),
user.create.bind(null, USER_0.username, USER_0.password, USER_0.email, USER_0.displayName, null, false),
user.create.bind(null, USER_1.username, USER_1.password, USER_1.email, USER_0.displayName, USER_0, false)
user.create.bind(null, USER_0.username, USER_0.password, USER_0.email, USER_0.displayName),
user.create.bind(null, USER_1.username, USER_1.password, USER_1.email, USER_0.displayName, { invitor: USER_0 })
], done);
}