From b741eb2c9716ffe9208fd56e529ff521f56e64dd Mon Sep 17 00:00:00 2001 From: alestiago Date: Wed, 30 Mar 2022 20:48:54 +0100 Subject: [PATCH] refactor: renamed test controllers --- test/game/components/controlled_ball_test.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/game/components/controlled_ball_test.dart b/test/game/components/controlled_ball_test.dart index 03efa12c..080dc357 100644 --- a/test/game/components/controlled_ball_test.dart +++ b/test/game/components/controlled_ball_test.dart @@ -62,7 +62,7 @@ void main() { 'removes ball', (game, tester) async { await game.add(ball); - final controller = PlungerBallController(ball); + final controller = LaunchedBallController(ball); await ball.add(controller); await game.ready(); @@ -76,7 +76,7 @@ void main() { tester.widgetTest( 'adds BallLost to GameBloc', (game, tester) async { - final controller = PlungerBallController(ball); + final controller = LaunchedBallController(ball); await ball.add(controller); await game.add(ball); await game.ready(); @@ -90,7 +90,7 @@ void main() { tester.widgetTest( 'adds a new ball if the game is not over', (game, tester) async { - final controller = PlungerBallController(ball); + final controller = LaunchedBallController(ball); await ball.add(controller); await game.add(ball); await game.ready();