From d6facca233ec311b21cdc838eeae5779d3005350 Mon Sep 17 00:00:00 2001 From: Erick Zanardo Date: Mon, 9 May 2022 19:22:05 -0300 Subject: [PATCH] lint --- .../test/src/pinball_audio_test.dart | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/packages/pinball_audio/test/src/pinball_audio_test.dart b/packages/pinball_audio/test/src/pinball_audio_test.dart index 5f1825be..28c4f1f6 100644 --- a/packages/pinball_audio/test/src/pinball_audio_test.dart +++ b/packages/pinball_audio/test/src/pinball_audio_test.dart @@ -357,15 +357,15 @@ void main() { ).thenAnswer((_) async => pool); }); - test('plays the bumper A sound pool', () async { - when(seed.nextBool).thenReturn(true); - await Future.wait( - audioPlayer.load().map((loadableBuilder) => loadableBuilder()), - ); - audioPlayer.play(PinballAudio.flipper); + test('plays the bumper A sound pool', () async { + when(seed.nextBool).thenReturn(true); + await Future.wait( + audioPlayer.load().map((loadableBuilder) => loadableBuilder()), + ); + audioPlayer.play(PinballAudio.flipper); - verify(() => pool.start()).called(1); - }); + verify(() => pool.start()).called(1); + }); }); group('cow moo', () {