Merge pull request #136 from PR0M3TH3AN/codex/fix-importerror-in-test_nostr_index_size.py

Fix missing path update in nostr index test
This commit is contained in:
thePR0M3TH3AN
2025-07-02 12:22:13 -04:00
committed by GitHub

View File

@@ -2,10 +2,14 @@ import time
from pathlib import Path
from tempfile import TemporaryDirectory
from unittest.mock import patch
import sys
import pytest
from cryptography.fernet import Fernet
sys.path.append(str(Path(__file__).resolve().parents[1]))
from password_manager.encryption import EncryptionManager
from password_manager.entry_management import EntryManager
from password_manager.vault import Vault