From 6ec5e5fec6bb2b1d8b556779a1309ed1295508b7 Mon Sep 17 00:00:00 2001 From: Petr Vobornik Date: Wed, 24 Jul 2013 13:24:02 +0200 Subject: Web UI integration tests: PEP8 fixes Tests modified to comply with PEP8 rules with exception of rule E501 (long lines). Done by autopep8 tool and 2 manual modifications. https://fedorahosted.org/freeipa/ticket/3744 --- ipatests/test_webui/test_dns.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ipatests/test_webui/test_dns.py') diff --git a/ipatests/test_webui/test_dns.py b/ipatests/test_webui/test_dns.py index 23a3a4b1..aeff77b8 100644 --- a/ipatests/test_webui/test_dns.py +++ b/ipatests/test_webui/test_dns.py @@ -40,7 +40,7 @@ ZONE_DATA = { ('checkbox', 'force', ''), ], 'mod': [ - ('checkbox', 'idnsallowsyncptr',''), + ('checkbox', 'idnsallowsyncptr', ''), ], } @@ -62,10 +62,11 @@ RECORD_MOD_DATA = { CONFIG_MOD_DATA = { 'mod': [ - ('checkbox', 'idnsallowsyncptr',''), + ('checkbox', 'idnsallowsyncptr', ''), ], } + class test_dns(UI_driver): def __init__(self, *args, **kwargs): @@ -82,7 +83,7 @@ class test_dns(UI_driver): # add and mod zone self.basic_crud(ZONE_ENTITY, ZONE_DATA, - default_facet=ZONE_DEFAULT_FACET , delete=False) + default_facet=ZONE_DEFAULT_FACET, delete=False) # add and mod record self.navigate_to_record(ZONE_PKEY) @@ -97,7 +98,6 @@ class test_dns(UI_driver): self.navigate_by_breadcrumb("DNS Zones") self.delete_record(ZONE_PKEY) - def test_config_crud(self): """ Basic CRUD: dnsconfig -- cgit