Fix broken tests
This commit is contained in:
parent
47ccb07218
commit
180edbc46a
1 changed files with 3 additions and 3 deletions
|
@ -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 {
|
||||||
|
|
Loading…
Reference in a new issue