Skip to content

Commit 10811c4

Browse files
committed
fix integration test error
1 parent 0a5ac79 commit 10811c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/integration/tasks.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ describe("Tasks", function () {
296296

297297
expect(res).to.have.status(404);
298298
expect(res.body).to.be.a("object");
299-
expect(res.body.message).to.equal("No tasks found");
299+
expect(res.body.message).to.equal("No tasks found.");
300300
expect(res.body.tasks).to.be.a("array");
301301
expect(res.body.tasks).to.have.lengthOf(0);
302302
return done();

0 commit comments

Comments
 (0)