From 180edbc46a556f6d572c3b4ade4b396a31a1bc42 Mon Sep 17 00:00:00 2001 From: Tobe O Date: Sat, 20 Apr 2019 11:25:13 -0400 Subject: [PATCH] Fix broken tests --- test/list_test.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/list_test.dart b/test/list_test.dart index 50fd122d..ba632a9e 100644 --- a/test/list_test.dart +++ b/test/list_test.dart @@ -26,9 +26,9 @@ main() { tearDown(() async { await server.close(force: true); - await list.close(); - await list.service.close(); - await app.close(); + unawaited(list.close()); + unawaited(list.service.close()); + unawaited(app.close()); }); test('listens on create', () async {