Fix failing test

This commit is contained in:
Girish Ramakrishnan
2019-06-21 15:05:28 -07:00
parent 514823af7d
commit 6f33900f85

View File

@@ -248,7 +248,7 @@ describe('Profile API', function () {
.query({ access_token: token_0 })
.send({ password: 'some wrong password', newPassword: 'MOre#$%34' })
.end(function (err, res) {
expect(res.statusCode).to.equal(400);
expect(res.statusCode).to.equal(412);
done();
});
});