diff --git a/test/plugins/sqlite.ts b/test/plugins/sqlite.ts index 16c832f1..f83ca58d 100644 --- a/test/plugins/sqlite.ts +++ b/test/plugins/sqlite.ts @@ -74,7 +74,7 @@ describe("SQLite Message Storage", function () { it("should insert schema version to options table", function (done) { store.database.get( "SELECT value FROM options WHERE name = 'schema_version'", - (err, row) => { + (err, row: {value: string}) => { expect(err).to.be.null; // Should be sqlite.currentSchemaVersion,