Skip to content

Commit 4a37aa0

Browse files
committed
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 .`
1 parent f49ae40 commit 4a37aa0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_cache.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from pathlib import Path
77
from unittest.mock import patch
88

9-
from src.gitfetch.cache import CacheManager
9+
from gitfetch.cache import CacheManager
1010

1111

1212
class TestCacheManager:

0 commit comments

Comments
 (0)