fix(test): drop unused MagicMock import in test_heartbeat_runtime_metadata

Reviewer bot flagged: import was leftover from earlier scaffolding —
all test fixtures use sys.modules monkey-patching with SimpleNamespace
instead. Drop to unblock merge. Tests still 5/5 pass.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Hongming Wang 2026-04-26 22:58:21 -07:00
parent 0473522cc5
commit aa70727ab9

View File

@ -9,7 +9,6 @@ keeping heartbeat resilient to a missing/broken adapter discovery
path.""" path."""
import sys import sys
from types import SimpleNamespace from types import SimpleNamespace
from unittest.mock import MagicMock
import pytest import pytest