Fix broken tests

This commit is contained in:
Tobe O 2019-04-20 11:25:13 -04:00
parent 47ccb07218
commit 180edbc46a

View file

@ -26,9 +26,9 @@ main() {
tearDown(() async { tearDown(() async {
await server.close(force: true); await server.close(force: true);
await list.close(); unawaited(list.close());
await list.service.close(); unawaited(list.service.close());
await app.close(); unawaited(app.close());
}); });
test('listens on create', () async { test('listens on create', () async {