test: drop the comments that described the removed sys.path setup

Two files kept a comment explaining a sys.path.insert that the previous commit
deleted. Flagged by review on #39894.
This commit is contained in:
Ranjan G 2026-09-05 15:51:50 +05:30
parent 16c9d6d5c9
commit 164feb53ac
2 changed files with 0 additions and 12 deletions

View file

@ -25,12 +25,6 @@ Tests cover (consolidating PRs #23706 and #22727):
the fallback inference path from being exercised).
"""
# Anchor sys.path to this file's location — not the working-directory-relative
# pattern Greptile flagged on PR #23706. Resolves correctly regardless of
# where pytest is invoked from.
from litellm.llms.anthropic.experimental_pass_through.adapters.handler import (
ANTHROPIC_ONLY_REQUEST_KEYS,
LiteLLMMessagesToCompletionTransformationHandler,

View file

@ -14,12 +14,6 @@ from unittest.mock import AsyncMock, MagicMock
import pytest
# Repo root, anchored to this file (not CWD) so the path is correct no
# matter where pytest is invoked from. With the project installed via
# uv this is defensive — `litellm` already resolves through site-packages
# — but it lets the harness work in editable-source layouts too.
# ---------------------------------------------------------------------------
# normalize() — used by every dict-equality assertion to scrub volatile fields
# ---------------------------------------------------------------------------