From abbe51ce1dbce9e6c1e0dca18fb8d3280de9632f Mon Sep 17 00:00:00 2001 From: Simon Leier Date: Fri, 14 Feb 2020 23:53:48 +0100 Subject: [PATCH] Remove duplicate await --- hive/test/integration/put_many_simultaneously_test.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hive/test/integration/put_many_simultaneously_test.dart b/hive/test/integration/put_many_simultaneously_test.dart index c44c38fb8..9e916c592 100644 --- a/hive/test/integration/put_many_simultaneously_test.dart +++ b/hive/test/integration/put_many_simultaneously_test.dart @@ -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(); }