Rename test_config_encryption.py to test_encryption.py

This change is done because the code being tested is in encryption.py, not in config_encryption.py
This commit is contained in:
VakarisZ 2021-09-21 10:25:48 +03:00
parent f61602552f
commit cf7b94613b
3 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ import os
import pytest
from tests.unit_tests.monkey_island.cc.mongomock_fixtures import * # noqa: F401,F403,E402
from tests.unit_tests.monkey_island.cc.services.utils.test_config_encryption import (
from tests.unit_tests.monkey_island.cc.services.utils.test_encryption import (
MONKEY_CONFIGS_DIR_PATH,
STANDARD_PLAINTEXT_MONKEY_CONFIG_FILENAME,
)

View File

@ -2,7 +2,7 @@ import pytest
from tests.unit_tests.monkey_island.cc.services.utils.ciphertexts_for_encryption_test import (
MALFORMED_CIPHER_TEXT_CORRUPTED,
)
from tests.unit_tests.monkey_island.cc.services.utils.test_config_encryption import PASSWORD
from tests.unit_tests.monkey_island.cc.services.utils.test_encryption import PASSWORD
from common.utils.exceptions import InvalidConfigurationError
from monkey_island.cc.resources.configuration_import import ConfigurationImport