diff --git a/test/game/pinball_game_test.dart b/test/game/pinball_game_test.dart index 6f3646e9..969a8704 100644 --- a/test/game/pinball_game_test.dart +++ b/test/game/pinball_game_test.dart @@ -18,21 +18,19 @@ void main() { () { bool Function(Component) componentSelector() => (component) => component is T; - - group('FlipperGroup', () { - flameTester.test( - 'has only one right Flipper', - (game) async { - await game.ready(); - expect( - () => game.children.singleWhere( - componentSelector(), - ), - returnsNormally, - ); - }, - ); - }); + + flameTester.test( + 'has only one FlipperGroup', + (game) async { + await game.ready(); + expect( + () => game.children.singleWhere( + componentSelector(), + ), + returnsNormally, + ); + }, + ); }, ); });