summaryrefslogtreecommitdiffstats
path: root/ipatests/test_webui/data_group.py
diff options
context:
space:
mode:
authorPetr Vobornik <pvoborni@redhat.com>2013-07-24 13:24:02 +0200
committerPetr Vobornik <pvoborni@redhat.com>2013-07-26 13:35:12 +0200
commit6ec5e5fec6bb2b1d8b556779a1309ed1295508b7 (patch)
tree126474a34ad61d032cf013c69a7e59da34e0d734 /ipatests/test_webui/data_group.py
parent8a3d8aeca3bec741f8c23652848075c298bea5f1 (diff)
downloadfreeipa-6ec5e5fec6bb2b1d8b556779a1309ed1295508b7.tar.gz
freeipa-6ec5e5fec6bb2b1d8b556779a1309ed1295508b7.tar.xz
freeipa-6ec5e5fec6bb2b1d8b556779a1309ed1295508b7.zip
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
Diffstat (limited to 'ipatests/test_webui/data_group.py')
-rw-r--r--ipatests/test_webui/data_group.py22
1 files changed, 11 insertions, 11 deletions
diff --git a/ipatests/test_webui/data_group.py b/ipatests/test_webui/data_group.py
index c933abee1..2b32b2f32 100644
--- a/ipatests/test_webui/data_group.py
+++ b/ipatests/test_webui/data_group.py
@@ -25,11 +25,11 @@ DATA = {
'pkey': PKEY,
'add': [
('textbox', 'cn', PKEY),
- ('textarea', 'description','test-group desc'),
- ('radio', 'type','normal'),
+ ('textarea', 'description', 'test-group desc'),
+ ('radio', 'type', 'normal'),
],
'mod': [
- ('textarea', 'description','test-group desc modified'),
+ ('textarea', 'description', 'test-group desc modified'),
],
}
@@ -38,33 +38,33 @@ DATA2 = {
'pkey': PKEY2,
'add': [
('textbox', 'cn', PKEY2),
- ('textarea', 'description','test-group2 desc'),
+ ('textarea', 'description', 'test-group2 desc'),
]
}
PKEY3 = 'itest-group3'
-DATA3= {
+DATA3 = {
'pkey': PKEY3,
'add': [
('textbox', 'cn', PKEY3),
- ('textarea', 'description','test-group3 desc'),
+ ('textarea', 'description', 'test-group3 desc'),
]
}
PKEY4 = 'itest-group4'
-DATA4= {
+DATA4 = {
'pkey': PKEY4,
'add': [
('textbox', 'cn', PKEY4),
- ('textarea', 'description','test-group4 desc'),
+ ('textarea', 'description', 'test-group4 desc'),
]
}
PKEY5 = 'itest-group5'
-DATA5= {
+DATA5 = {
'pkey': PKEY5,
'add': [
('textbox', 'cn', PKEY5),
- ('textarea', 'description','test-group5 desc'),
+ ('textarea', 'description', 'test-group5 desc'),
]
-} \ No newline at end of file
+}