From fe5240e9b8c66d755fc6463f13005ac6a421553f Mon Sep 17 00:00:00 2001 From: Jochum van der Ploeg Date: Tue, 26 Apr 2022 15:57:44 +0200 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Allison Ryan <77211884+allisonryan0002@users.noreply.github.com> --- test/game/pinball_game_test.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/game/pinball_game_test.dart b/test/game/pinball_game_test.dart index 85c28e2d..4199523d 100644 --- a/test/game/pinball_game_test.dart +++ b/test/game/pinball_game_test.dart @@ -204,7 +204,7 @@ void main() { }); group('flipper control', () { - flameTester.test('move left flipper up', (game) async { + flameTester.test('tap down moves left flipper up', (game) async { await game.ready(); final eventPosition = MockEventPosition(); @@ -228,7 +228,7 @@ void main() { expect(flippers.first.body.linearVelocity.y, isNegative); }); - flameTester.test('move right flipper up', (game) async { + flameTester.test('tap down moves right flipper up', (game) async { await game.ready(); final eventPosition = MockEventPosition();