Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
Wolfteam committed Jan 1, 2022
1 parent a8730d7 commit 98bfbb9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/infrastructure/genshin_service_test.dart
Expand Up @@ -30,11 +30,11 @@ void main() {
return service;
}

test('Initialize all languages', () {
test('Initialize all languages', () async {
final service = _getService();

for (final lang in languages) {
expect(service.init(lang), completes);
await expectLater(service.init(lang), completes);
}
});

Expand Down

0 comments on commit 98bfbb9

Please sign in to comment.