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_service.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'ipatests/test_webui/test_service.py') diff --git a/ipatests/test_webui/test_service.py b/ipatests/test_webui/test_service.py index cd32cce3..81d638f1 100644 --- a/ipatests/test_webui/test_service.py +++ b/ipatests/test_webui/test_service.py @@ -25,6 +25,7 @@ from ipatests.test_webui.ui_driver import UI_driver ENTITY = 'service' + class sevice_tasks(UI_driver): def prep_data(self): @@ -40,7 +41,7 @@ class sevice_tasks(UI_driver): ('combobox', 'host', host) ], 'mod': [ - ('checkbox', 'ipakrbokasdelegate',''), + ('checkbox', 'ipakrbokasdelegate', ''), ], } @@ -93,7 +94,7 @@ class test_service(sevice_tasks): self.action_panel_action(panel, 'request_cert') self.fill_text('textarea.certificate', csr) self.dialog_button_click('issue') - self.wait_for_request(n=2,d=0.5) + self.wait_for_request(n=2, d=0.5) self.assert_visible("div[name='certificate-valid']") # cert view -- cgit