Skip to content

Commit

Permalink
Fixing test key paths after merging #43 .
Browse files Browse the repository at this point in the history
  • Loading branch information
russell-lewis committed Apr 19, 2017
1 parent dc02dc7 commit d5a1c1f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/aws_lambda/test_bless_lambda.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def test_basic_local_missing_kmsauth_request():
def test_basic_local_username_validation_disabled(monkeypatch):
extra_environment_variables = {
'bless_ca_default_password': '<INSERT_DEFAULT_KMS_ENCRYPTED_BASE64_ENCODED_PEM_PASSWORD_HERE>',
'bless_ca_ca_private_key_file': '../../tests/aws_lambda/only-use-for-unit-tests.pem',
'bless_ca_ca_private_key_file': 'tests/aws_lambda/only-use-for-unit-tests.pem',
'bless_options_username_validation': 'disabled',
'bless_options_remote_usernames_validation': 'disabled',
}
Expand All @@ -161,7 +161,7 @@ def test_basic_local_username_validation_disabled(monkeypatch):
def test_basic_local_username_validation_email_remote_usernames_useradd(monkeypatch):
extra_environment_variables = {
'bless_ca_default_password': '<INSERT_DEFAULT_KMS_ENCRYPTED_BASE64_ENCODED_PEM_PASSWORD_HERE>',
'bless_ca_ca_private_key_file': '../../tests/aws_lambda/only-use-for-unit-tests.pem',
'bless_ca_ca_private_key_file': 'tests/aws_lambda/only-use-for-unit-tests.pem',
'bless_options_username_validation': 'email',
'bless_options_remote_usernames_validation': 'useradd',
}
Expand Down

0 comments on commit d5a1c1f

Please sign in to comment.