diff --git a/test/base_game_test.dart b/test/base_game_test.dart index 5ab5a3130..b30065b69 100644 --- a/test/base_game_test.dart +++ b/test/base_game_test.dart @@ -71,7 +71,8 @@ void main() { expect(true, game.components.contains(component)); }); - test('when the component has onLoad function, adds after load completion', () async { + test('when the component has onLoad function, adds after load completion', + () async { final MyGame game = MyGame(); final MyAsyncComponent component = MyAsyncComponent(); diff --git a/test/components/composed_component_test.dart b/test/components/composed_component_test.dart index 13a9294d7..44c77c81d 100644 --- a/test/components/composed_component_test.dart +++ b/test/components/composed_component_test.dart @@ -64,7 +64,9 @@ void main() { expect(true, wrapper.containsChild(child)); }); - test('when child is async loading, adds the child to the component after loading', () async { + test( + 'when child is async loading, adds the child to the component after loading', + () async { final MyAsyncChild child = MyAsyncChild(); final MyComposed wrapper = MyComposed(); await wrapper.addChild(child);