Fix tests

This commit is contained in:
Girish Ramakrishnan
2023-07-11 16:32:28 +05:30
parent 2d4e7c9c0a
commit 5beb7d7d92
5 changed files with 15 additions and 16 deletions
+1 -1
View File
@@ -78,7 +78,7 @@ describe('task', function () {
});
it('del missing task fails', async function () {
const [error] = await safe(tasks._del('random'));
const [error] = await safe(tasks._del('1235'));
expect(error.reason).to.be(BoxError.NOT_FOUND);
});