From 8a6409c0d2edd23352f2cdacea8945051e64bdd5 Mon Sep 17 00:00:00 2001 From: Samarth D N Date: Fri, 31 Jul 2026 11:36:20 +0530 Subject: [PATCH] fix: correct typo in test function name --- tests/test_data_collection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_data_collection.py b/tests/test_data_collection.py index 284303319e..f2bb32dcde 100644 --- a/tests/test_data_collection.py +++ b/tests/test_data_collection.py @@ -250,7 +250,7 @@ def _get(dc, path): ), ], ) -def test_initalize_client_data_collection(options, expected): +def test_initialize_client_data_collection(options, expected): dc = _initialize_client_with_config(**options) for path, value in expected.items(): assert _get(dc, path) == value, f"{path} != {value!r}"