From 79586d10cc59d91fd6d38fa1938879719a71e029 Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Wed, 2 Sep 2026 17:44:44 -0700 Subject: [PATCH] fix: point LEDGER_PATH at the new core/ocr location --- tests/rust-python-harness/ledger.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/rust-python-harness/ledger.py b/tests/rust-python-harness/ledger.py index 4587e14b067..2f1e64e6271 100644 --- a/tests/rust-python-harness/ledger.py +++ b/tests/rust-python-harness/ledger.py @@ -5,7 +5,7 @@ from dataclasses import dataclass from pathlib import Path from typing import Any -LEDGER_PATH = Path(__file__).parent / "validate_sub_methods" / "ocr_test_ledger.json" +LEDGER_PATH = Path(__file__).parent / "core" / "ocr" / "ocr_test_ledger.json" @dataclass(frozen=True, slots=True)