Skip to content

Commit

Permalink
fix integration test error
Browse files Browse the repository at this point in the history
  • Loading branch information
vinit717 committed Aug 4, 2023
1 parent 0a5ac79 commit 10811c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/integration/tasks.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ describe("Tasks", function () {

expect(res).to.have.status(404);
expect(res.body).to.be.a("object");
expect(res.body.message).to.equal("No tasks found");
expect(res.body.message).to.equal("No tasks found.");
expect(res.body.tasks).to.be.a("array");
expect(res.body.tasks).to.have.lengthOf(0);
return done();
Expand Down

0 comments on commit 10811c4

Please sign in to comment.