diff options
author | beeankha <beeankha@gmail.com> | 2021-03-18 20:18:57 +0100 |
---|---|---|
committer | beeankha <beeankha@gmail.com> | 2021-03-18 20:18:57 +0100 |
commit | 586019fe8fc885b4af99fe086ab83dcb4852ba97 (patch) | |
tree | 60e69a727cf7ea21a48bf5708be8d0aed3d45db8 /awx_collection | |
parent | Merge pull request #9589 from nixocio/ui_issue_9250 (diff) | |
download | awx-586019fe8fc885b4af99fe086ab83dcb4852ba97.tar.xz awx-586019fe8fc885b4af99fe086ab83dcb4852ba97.zip |
Fix linting errors in credential input source test file
Diffstat (limited to 'awx_collection')
-rw-r--r-- | awx_collection/test/awx/test_credential_input_source.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/awx_collection/test/awx/test_credential_input_source.py b/awx_collection/test/awx/test_credential_input_source.py index 8984fdfb12..9eea6f3fe5 100644 --- a/awx_collection/test/awx/test_credential_input_source.py +++ b/awx_collection/test/awx/test_credential_input_source.py @@ -333,8 +333,8 @@ def test_aim_credential_source(run_module, admin_user, organization, source_cred assert cis.target_credential.name == tgt_cred.name assert cis.input_field_name == 'password' - - # Test Centrify Vault secret credential source + +# Test Centrify Vault secret credential source @pytest.fixture def source_cred_centrify_secret(organization): # Make a credential type which will be used by the credential @@ -380,4 +380,4 @@ def test_centrify_vault_credential_source(run_module, admin_user, organization, assert cis.source_credential.name == source_cred_centrify_secret.name assert cis.target_credential.name == tgt_cred.name assert cis.input_field_name == 'password' - assert result['id'] == cis.pk + assert result['id'] == cis.pk |