diff --git a/aimmo-game-worker/tests/test_avatar_runner.py b/aimmo-game-worker/tests/test_avatar_runner.py index 9fec3e0dc..62fa65331 100644 --- a/aimmo-game-worker/tests/test_avatar_runner.py +++ b/aimmo-game-worker/tests/test_avatar_runner.py @@ -13,4 +13,4 @@ def handle_turn(self, world_map, avatar_state): runner = AvatarRunner(Avatar()) action, logs = runner.process_avatar_turn(world_map={}, avatar_state={}) - self.assertIsInstance(action, WaitAction) + self.assertEqual(action, {'action_type': 'wait'})