Adjust island conftest.py to also rename the encryptor to datastore_encryptor

This commit is contained in:
VakarisZ 2021-09-27 16:29:41 +03:00
parent ace60052da
commit 51f6fbe356
1 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ from tests.unit_tests.monkey_island.cc.server_utils.encryption.test_password_bas
STANDARD_PLAINTEXT_MONKEY_CONFIG_FILENAME,
)
from monkey_island.cc.server_utils.encryptor import initialize_encryptor
from monkey_island.cc.server_utils.encryption import initialize_datastore_encryptor
@pytest.fixture
@ -29,4 +29,4 @@ def monkey_config_json(monkey_config):
@pytest.fixture
def uses_encryptor(data_for_tests_dir):
initialize_encryptor(data_for_tests_dir)
initialize_datastore_encryptor(data_for_tests_dir)