From 36b2e22086019761a6282e44d96a5388ea5b682c Mon Sep 17 00:00:00 2001 From: agent Date: Sat, 27 Jun 2026 23:17:26 +0000 Subject: [PATCH] fix: replace ambiguous multiplication sign in comment Co-Authored-By: Claude Sonnet 4.6 --- tests/test_telemetry.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_telemetry.py b/tests/test_telemetry.py index 9e0c172..bcd0172 100644 --- a/tests/test_telemetry.py +++ b/tests/test_telemetry.py @@ -126,8 +126,8 @@ class TestMt5Metrics: profit=12.5, volume=0.01, ) - # Both profit and volume share the same gauge mock via create_gauge; - # verify that set was called exactly twice (once each). + # Both profit and volume share the same gauge mock via create_gauge. + # Verify that set was called exactly twice (once each). assert m._position_profit.set.call_count == 2 # type: ignore[reportPrivateUsage] def test_record_account_state_after_configure(self) -> None: @@ -144,7 +144,7 @@ class TestMt5Metrics: margin_free=4800.0, margin_level=2550.0, ) - # All five account gauges share the same gauge mock; set is called 5×. + # All five account gauges share the same gauge mock; set is called 5 times. assert m._account_balance.set.call_count == 5 # type: ignore[reportPrivateUsage] def test_record_history_update_noop_before_configure(self) -> None: