Skip to content

Commit

Permalink
chore(hydrated_bloc): fix unawaited sdk constraint
Browse files Browse the repository at this point in the history
  • Loading branch information
felangel committed May 15, 2023
1 parent 8436fcb commit 6be7223
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/hydrated_bloc/test/hydrated_storage_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,8 @@ void main() {
(i) => Iterable.generate(i, (j) => 'Point($i,$j);').toList(),
).toList();

unawaited(storage.write(token, record));
// ignore: unawaited_futures
storage.write(token, record);

storage = await HydratedStorage.build(
storageDirectory: Directory(cwd),
Expand Down

0 comments on commit 6be7223

Please sign in to comment.