From 033f8dc626c0ad2e13594d964869b72cad228142 Mon Sep 17 00:00:00 2001 From: Christian Heimes Date: May 05 2020 17:11:37 +0000 Subject: Fix E266 too many leading '#' for block comment Related: https://pagure.io/freeipa/issue/8306 Signed-off-by: Christian Heimes Reviewed-By: Florence Blanc-Renaud --- diff --git a/ipatests/test_integration/test_vault.py b/ipatests/test_integration/test_vault.py index e5b3ad1..548822d 100644 --- a/ipatests/test_integration/test_vault.py +++ b/ipatests/test_integration/test_vault.py @@ -176,7 +176,7 @@ class TestInstallKRA(IntegrationTest): self._retrieve_secret([self.vault_name_replica_with_KRA]) - ################# master ################# + # ################ master ################# # test master again after KRA was installed on replica # create vault self.master.run_command([ @@ -197,7 +197,7 @@ class TestInstallKRA(IntegrationTest): self._retrieve_secret([self.vault_name_master2]) - ################ old vaults ############### + # ############### old vaults ############### # test if old vaults are still accessible self._retrieve_secret([ self.vault_name_master, diff --git a/ipatests/test_webui/test_automount.py b/ipatests/test_webui/test_automount.py index 56da136..48f1c2b 100644 --- a/ipatests/test_webui/test_automount.py +++ b/ipatests/test_webui/test_automount.py @@ -264,7 +264,7 @@ class TestAutomount(UI_driver): self.navigate_by_breadcrumb(LOC_PKEY) self.delete_record(MAP_PKEY) - ## test indirect maps + # test indirect maps direct_pkey = 'itest-direct' indirect_pkey = 'itest-indirect' diff --git a/ipatests/test_webui/test_hostgroup.py b/ipatests/test_webui/test_hostgroup.py index 354b75f..63b4ad8 100644 --- a/ipatests/test_webui/test_hostgroup.py +++ b/ipatests/test_webui/test_hostgroup.py @@ -154,8 +154,8 @@ class test_hostgroup(UI_driver): self.assert_indirect_record(hbac.RULE_PKEY, hostgroup.ENTITY, 'memberof_hbacrule') self.assert_indirect_record(sudo.RULE_PKEY, hostgroup.ENTITY, 'memberof_sudorule') - ## cleanup - ## ------- + # cleanup + # ------- self.delete(hostgroup.ENTITY, [hostgroup.DATA, hostgroup.DATA2, hostgroup.DATA3, hostgroup.DATA4, hostgroup.DATA5]) diff --git a/ipatests/test_webui/test_user.py b/ipatests/test_webui/test_user.py index 9b88923..1fe6389 100644 --- a/ipatests/test_webui/test_user.py +++ b/ipatests/test_webui/test_user.py @@ -184,8 +184,8 @@ class test_user(user_tasks): self.assert_indirect_record(hbac.RULE_PKEY, user.ENTITY, 'memberof_hbacrule') self.assert_indirect_record(sudo.RULE_PKEY, user.ENTITY, 'memberof_sudorule') - ## cleanup - ## ------- + # cleanup + # ------- self.delete(user.ENTITY, [user.DATA]) self.delete(group.ENTITY, [group.DATA, group.DATA2]) self.delete(netgroup.ENTITY, [netgroup.DATA])