From 4dd60986194ab6565bcdfff9cc6d8603f5903025 Mon Sep 17 00:00:00 2001 From: kjh2064 Date: Thu, 30 Jul 2026 14:34:01 +0900 Subject: [PATCH] fix: broken import in test_kis_data_collection_v1.py (same root cause as F8) Same class of bug as the earlier tools/run_kis_data_collection_v1.py fix this session: the module moved to src/quant_engine/deprecated/ but this test still imported the old path. Found by actually running pytest --collect-only on tests/unit/ (110 tests collect cleanly now, was failing at 1 error before). Co-Authored-By: Claude Sonnet 5 --- tests/unit/test_kis_data_collection_v1.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/test_kis_data_collection_v1.py b/tests/unit/test_kis_data_collection_v1.py index 9e4f9e80..aa47cf7d 100644 --- a/tests/unit/test_kis_data_collection_v1.py +++ b/tests/unit/test_kis_data_collection_v1.py @@ -9,7 +9,7 @@ ROOT = Path(__file__).resolve().parents[2] if str(ROOT) not in sys.path: sys.path.insert(0, str(ROOT)) -from src.quant_engine import kis_data_collection_v1 as kdc +from src.quant_engine.deprecated import kis_data_collection_v1 as kdc class TestKisDataCollectionV1(unittest.TestCase):