fix user create response

This commit is contained in:
Girish Ramakrishnan
2016-04-06 10:20:32 -07:00
parent 4c964bcaf8
commit 275d8c2121
4 changed files with 6 additions and 6 deletions

View File

@@ -182,7 +182,7 @@ describe('Apps', function () {
.end(function (err, res) {
expect(res.statusCode).to.equal(201);
USER_1_ID = res.body.userInfo.id;
USER_1_ID = res.body.id;
callback(null);
});