From b8ccfcb78dc0b37f4d3cfc0cea6080636d3871fb Mon Sep 17 00:00:00 2001 From: alestiago Date: Fri, 1 Apr 2022 09:04:01 +0100 Subject: [PATCH] refactor: fixed variable typo --- test/flame/component_controller_test.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/flame/component_controller_test.dart b/test/flame/component_controller_test.dart index 422b30bf..a802a393 100644 --- a/test/flame/component_controller_test.dart +++ b/test/flame/component_controller_test.dart @@ -52,9 +52,9 @@ void main() { final component = ControlledComponent(); final controller = TestComponentController(component); - final anotherComponet = Component(); + final anotherComponent = Component(); await expectLater( - () async => controller.add(anotherComponet), + () async => controller.add(anotherComponent), throwsException, ); },