Fixup the unit tests after removing PREFIX_USER

This commit is contained in:
Johannes Zellner
2016-06-03 13:03:52 +02:00
parent 7667cdc66d
commit b4dfad3aa3
7 changed files with 12 additions and 12 deletions

View File

@@ -67,7 +67,7 @@ function setup(done) {
token_1 = tokendb.generateToken();
// HACK to get a token for second user (passwords are generated and the user should have gotten a password setup link...)
tokendb.add(token_1, tokendb.PREFIX_USER + USER_1_ID, 'test-client-id', Date.now() + 100000, '*', callback);
tokendb.add(token_1, USER_1_ID, 'test-client-id', Date.now() + 100000, '*', callback);
}
], done);