Skip to content

Commit 49cd933

Browse files
committed
fix tests
1 parent 1cdcacf commit 49cd933

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

sqflite/lib/src/sentry_database.dart

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,4 +196,9 @@ class SentryDatabase extends SentryDatabaseExecutor implements Database {
196196
}
197197
});
198198
}
199+
200+
@override
201+
Future<T> readTransaction<T>(Future<T> Function(Transaction txn) action) {
202+
return transaction((txn) => action(txn));
203+
}
199204
}

0 commit comments

Comments
 (0)