Skip to content

Commit

Permalink
Remove duplicate await
Browse files Browse the repository at this point in the history
  • Loading branch information
simc committed Feb 14, 2020
1 parent f74da5c commit abbe51c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hive/test/integration/put_many_simultaneously_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Future _performTest(bool lazy) async {

box = await box.reopen();
for (var i = 0; i < amount; i++) {
expect(await await box.get('key$i'), 'value$i');
expect(await box.get('key$i'), 'value$i');
}
await box.close();
}
Expand Down

0 comments on commit abbe51c

Please sign in to comment.