diff --git a/tests/credential_plugins_test.py b/tests/credential_plugins_test.py index 691bcd0599..39b0914cad 100644 --- a/tests/credential_plugins_test.py +++ b/tests/credential_plugins_test.py @@ -139,17 +139,11 @@ class TestDelineaImports: def test_dsv_import(self) -> None: from awx_plugins.credentials.dsv import SecretsVault # noqa F401 - # assert this module as opposed to older thycotic.secrets.vault assert SecretsVault.__module__ == 'delinea.secrets.vault' def test_tss_import(self) -> None: - from awx_plugins.credentials.tss import ( # noqa F401 - DomainPasswordGrantAuthorizer, - PasswordGrantAuthorizer, - SecretServer, - ServerSecret, - ) + from awx_plugins.credentials.tss import DomainPasswordGrantAuthorizer, PasswordGrantAuthorizer, SecretServer, ServerSecret # noqa F401 for cls in ( DomainPasswordGrantAuthorizer,