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 <noreply@anthropic.com>
This commit is contained in:
2026-07-30 14:34:01 +09:00
parent 70e49f0556
commit 4dd6098619
+1 -1
View File
@@ -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):