From 4a37aa0401907a3eb70302110065a6685e6bce03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=83=AD=E5=BF=83=E5=B8=82=E6=B0=91?= <131895407+31413Hao@users.noreply.github.com> Date: Tue, 16 Dec 2025 02:53:54 +0800 Subject: [PATCH] fix: correct import path in test_cache.py Change `from src.gitfetch.cache` to `from gitfetch.cache` to fix ModuleNotFoundError when running tests after `pip install -e .` --- tests/test_cache.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_cache.py b/tests/test_cache.py index a5354c5..0f8a428 100644 --- a/tests/test_cache.py +++ b/tests/test_cache.py @@ -6,7 +6,7 @@ from pathlib import Path from unittest.mock import patch -from src.gitfetch.cache import CacheManager +from gitfetch.cache import CacheManager class TestCacheManager: