Fix ldap tests

This commit is contained in:
Johannes Zellner
2016-01-18 13:56:59 +01:00
parent e9b3a1e99c
commit 4629739a14

View File

@@ -32,8 +32,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, true, null),
user.create.bind(null, USER_1.username, USER_1.password, USER_1.email, false, USER_0)
user.create.bind(null, USER_0.username, USER_0.password, USER_0.email, true, null, false),
user.create.bind(null, USER_1.username, USER_1.password, USER_1.email, false, USER_0, false)
], done);
}