From 167d1f7e89be34eaf3d12011296066b20aaa7d45 Mon Sep 17 00:00:00 2001 From: Tom Arra Date: Sat, 7 May 2022 17:08:19 -0500 Subject: [PATCH] fixes and words --- .vscode/cspell.json | 2 ++ .../pinball_flame/test/src/pinball_forge2d_game_test.dart | 6 +++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.vscode/cspell.json b/.vscode/cspell.json index ab90e25b..95aa78c5 100644 --- a/.vscode/cspell.json +++ b/.vscode/cspell.json @@ -21,9 +21,11 @@ "mocktail", "multiball", "multiballs", + "occluder", "pixelated", "pixeloid", "rects", + "rrect", "serializable", "theming", "unawaited", diff --git a/packages/pinball_flame/test/src/pinball_forge2d_game_test.dart b/packages/pinball_flame/test/src/pinball_forge2d_game_test.dart index b8dc9fcc..2da32f0e 100644 --- a/packages/pinball_flame/test/src/pinball_forge2d_game_test.dart +++ b/packages/pinball_flame/test/src/pinball_forge2d_game_test.dart @@ -19,7 +19,7 @@ void main() { }); flameTester.test( - 'screenToFlameWorld throws UnimpelementedError', + 'screenToFlameWorld throws UnimplementedError', (game) async { expect( () => game.screenToFlameWorld(Vector2.zero()), @@ -29,7 +29,7 @@ void main() { ); flameTester.test( - 'screenToWorld throws UnimpelementedError', + 'screenToWorld throws UnimplementedError', (game) async { expect( () => game.screenToWorld(Vector2.zero()), @@ -39,7 +39,7 @@ void main() { ); flameTester.test( - 'worldToScreen throws UnimpelementedError', + 'worldToScreen throws UnimplementedError', (game) async { expect( () => game.worldToScreen(Vector2.zero()),