Skip to content

Commit

Permalink
fix: expectation message as test was failing
Browse files Browse the repository at this point in the history
  • Loading branch information
pankajjs committed Dec 27, 2024
1 parent 908c0a2 commit 4715f49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/integration/onboardingExtension.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ describe("/requests Onboarding Extension", () => {
.end((err, res) => {
if (err) return done(err);
expect(res.statusCode).to.equal(401);
expect(res.body.error).to.equal("Unauthorized Request");
expect(res.body.error).to.equal("Unauthorized");
expect(res.body.message).to.equal(UNAUTHORIZED_TO_CREATE_ONBOARDING_EXTENSION_REQUEST);
done();
})
Expand Down

0 comments on commit 4715f49

Please sign in to comment.