Fix analysis warning that popped out of nowhere

This commit is contained in:
Simon Binder 2019-06-27 09:47:27 +02:00
parent a6505d691b
commit 3c7e25a169
No known key found for this signature in database
GPG Key ID: 7891917E4147B8C0
1 changed files with 1 additions and 0 deletions

View File

@ -18,6 +18,7 @@ void main() {
expect(() async { expect(() async {
await db.transaction((t) { await db.transaction((t) {
t.select(db.users).watch(); t.select(db.users).watch();
return Future.value(null); // analysis warning in travis otherwise
}); });
}, throwsStateError); }, throwsStateError);