From 75e85f9aafff64ffca16d5c85337cd615474535e Mon Sep 17 00:00:00 2001 From: Alexsander Hamir Date: Thu, 5 Feb 2026 17:14:44 -0800 Subject: [PATCH] fix: rename test_cost_calculator to resolve pytest import collision Rename tests/test_litellm/llms/azure_ai/test_cost_calculator.py to test_azure_ai_cost_calculator.py. Two test files shared the same module name (test_cost_calculator) in different paths, causing pytest 'import file mismatch' when collecting. Unique basenames resolve the collision. --- .../{test_cost_calculator.py => test_azure_ai_cost_calculator.py} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename tests/test_litellm/llms/azure_ai/{test_cost_calculator.py => test_azure_ai_cost_calculator.py} (100%) diff --git a/tests/test_litellm/llms/azure_ai/test_cost_calculator.py b/tests/test_litellm/llms/azure_ai/test_azure_ai_cost_calculator.py similarity index 100% rename from tests/test_litellm/llms/azure_ai/test_cost_calculator.py rename to tests/test_litellm/llms/azure_ai/test_azure_ai_cost_calculator.py