From 2a8e1f41d07150aa9f48b3fd7f545b3d1997eaef Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Wed, 4 Dec 2024 11:57:26 -0800 Subject: [PATCH] fix: Correct indentation in analytics test file --- tests/basic/test_analytics.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/basic/test_analytics.py b/tests/basic/test_analytics.py index dd25e12c8..b29655069 100644 --- a/tests/basic/test_analytics.py +++ b/tests/basic/test_analytics.py @@ -65,7 +65,8 @@ def test_analytics_event_logging(temp_analytics_file, temp_data_dir): test_event = "test_event" test_properties = {"test_key": "test_value"} - with patch.object(analytics.mp, "track") as mock_mp_track: + + # fix indent AI! with patch.object(analytics.ph, "capture") as mock_ph_capture: analytics.event(test_event, **test_properties)