diff --git a/danding_bot/plugins/group_horse_racing/test_commands.py b/danding_bot/plugins/group_horse_racing/test_commands.py index 32f20d4..579d1cd 100644 --- a/danding_bot/plugins/group_horse_racing/test_commands.py +++ b/danding_bot/plugins/group_horse_racing/test_commands.py @@ -190,6 +190,10 @@ class _InMemoryPointsService: self.calls.append(("refund_bet_points", {"user_id": user_id, "amount": amount, "reason": reason})) return True, 0 + async def get_balance(self, user_id: str) -> int: + self.calls.append(("get_balance", {"user_id": user_id})) + return 0 + class _NoopMessageService: def clear_pending_recalls(self, scope: str):