Skip to content

Commit

Permalink
fix: actual message in assert statement
Browse files Browse the repository at this point in the history
  • Loading branch information
pankajjs committed Dec 28, 2024
1 parent f25ac98 commit da77310
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/integration/requests.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ describe("/requests OOO", function () {
.end(function (err, res) {
expect(res).to.have.status(400);
expect(res.body).to.have.property("message");
expect(res.body.message).to.equal('"type" must be one of [OOO, EXTENSION]');
expect(res.body.message).to.equal('"type" must be one of [OOO, EXTENSION, ONBOARDING]');
done();
});
});
Expand Down

0 comments on commit da77310

Please sign in to comment.