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_config.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'ipatests/test_webui/test_config.py') diff --git a/ipatests/test_webui/test_config.py b/ipatests/test_webui/test_config.py index fb160e81..f7f568f5 100644 --- a/ipatests/test_webui/test_config.py +++ b/ipatests/test_webui/test_config.py @@ -27,18 +27,19 @@ ENTITY = 'config' DATA = { 'mod': [ - ('textbox', 'ipasearchrecordslimit','200'), - ('textbox', 'ipasearchtimelimit','3'), + ('textbox', 'ipasearchrecordslimit', '200'), + ('textbox', 'ipasearchtimelimit', '3'), ], } DATA2 = { 'mod': [ - ('textbox', 'ipasearchrecordslimit','100'), - ('textbox', 'ipasearchtimelimit','2'), + ('textbox', 'ipasearchrecordslimit', '100'), + ('textbox', 'ipasearchtimelimit', '2'), ], } + class test_config(UI_driver): def test_mod(self): -- cgit