forked from p15670423/monkey
Fix scoutsuite unit test to use updated datastore encryptor interface
This commit is contained in:
parent
3ec26bcef8
commit
ea6fe37b44
|
@ -26,7 +26,7 @@ def test_is_aws_keys_setup(tmp_path):
|
||||||
mongo.db.config.find_one = MagicMock(return_value=ConfigService.default_config)
|
mongo.db.config.find_one = MagicMock(return_value=ConfigService.default_config)
|
||||||
assert not is_aws_keys_setup()
|
assert not is_aws_keys_setup()
|
||||||
|
|
||||||
bogus_key_value = get_datastore_encryptor().enc("bogus_aws_key")
|
bogus_key_value = get_datastore_encryptor().encrypt("bogus_aws_key")
|
||||||
dpath.util.set(
|
dpath.util.set(
|
||||||
ConfigService.default_config, AWS_KEYS_PATH + ["aws_secret_access_key"], bogus_key_value
|
ConfigService.default_config, AWS_KEYS_PATH + ["aws_secret_access_key"], bogus_key_value
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue