Fix missing sys.path update in nostr index size test

This commit is contained in:
thePR0M3TH3AN
2025-07-02 12:19:40 -04:00
parent 6424bf044b
commit 36ff65e076

View File

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