From 42fa20e25fc818489aafeba2c07d70810d47e6ce Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Wed, 2 Sep 2026 18:12:58 -0700 Subject: [PATCH] refactor: point cli.py at the relocated mapping_validator module --- tests/rust-python-harness/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/rust-python-harness/cli.py b/tests/rust-python-harness/cli.py index d3594d219a0..f9e97d7ad43 100644 --- a/tests/rust-python-harness/cli.py +++ b/tests/rust-python-harness/cli.py @@ -9,7 +9,7 @@ from .catalog import load_catalog from .models import HarnessCase, Strategy from .runner import run_pytest from .ui import make_dashboard -from .validate_ledger import FunctionReport, build_function_report +from .strategies.unit_tests.mapping_validator import FunctionReport, build_function_report REPO_ROOT = Path(__file__).resolve().parents[2] COVERAGE_ROOT = REPO_ROOT / "target" / "rust-python-harness"