Skip to content

Commit

Permalink
updated test
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshuaWise committed Sep 2, 2023
1 parent 69fbb70 commit 8ed0172
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/10.database.open.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ describe('new Database()', function () {
const start = Date.now();
expect(() => db.exec('BEGIN EXCLUSIVE')).to.throw(Database.SqliteError).with.property('code', 'SQLITE_BUSY');
const end = Date.now();
expect(end - start).to.be.closeTo(timeout, 200);
expect(end - start).to.be.closeTo(timeout, 300);
} finally {
db.close();
}
Expand Down

0 comments on commit 8ed0172

Please sign in to comment.