From c54c067f1b3021bb48210266a329bce7819fe2a2 Mon Sep 17 00:00:00 2001 From: alestiago Date: Tue, 3 May 2022 18:57:19 +0100 Subject: [PATCH] refactor: removed duplicate test --- .../ball/behaviors/ball_scaling_behavior_test.dart | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/packages/pinball_components/test/src/components/ball/behaviors/ball_scaling_behavior_test.dart b/packages/pinball_components/test/src/components/ball/behaviors/ball_scaling_behavior_test.dart index 42cd9073..d4ff01b8 100644 --- a/packages/pinball_components/test/src/components/ball/behaviors/ball_scaling_behavior_test.dart +++ b/packages/pinball_components/test/src/components/ball/behaviors/ball_scaling_behavior_test.dart @@ -35,17 +35,6 @@ void main() { ); }); - flameTester.test('can be loaded', (game) async { - final ball = Ball.test(baseColor: baseColor); - final behavior = BallScalingBehavior(); - await ball.add(behavior); - await game.ensureAdd(ball); - expect( - ball.firstChild(), - equals(behavior), - ); - }); - flameTester.test('scales the shape radius', (game) async { final ball1 = Ball.test(baseColor: baseColor) ..initialPosition = Vector2(0, 10);