diff options
Diffstat (limited to 'test/uitests.sikuli/test_output_settings.py')
-rw-r--r-- | test/uitests.sikuli/test_output_settings.py | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/test/uitests.sikuli/test_output_settings.py b/test/uitests.sikuli/test_output_settings.py index 621e057..532cd4d 100644 --- a/test/uitests.sikuli/test_output_settings.py +++ b/test/uitests.sikuli/test_output_settings.py @@ -14,11 +14,12 @@ data = datafiles.TestData() class Test_Custom_Settings(unittest.TestCase): """Features: users can specify custom format, size and aspect ration. - + """ def setUp(self): """ - Each tests assumes that I there are files in the list ready to be converted to some format. + Each tests assumes that I there are files in the + list ready to be converted to some format. """ self.lvc = MVCGui() @@ -43,8 +44,7 @@ class Test_Custom_Settings(unittest.TestCase): lvc.choose_custom_size(self, 'on', width=w, height=h) lvc.lvc.choose_device_conversion('WebM') lvc.start_conversions() - assert lvc.verify_size(item, width=w, height=h) - + assert lvc.verify_size(item, width=w, height=h) def choose_aspect_ration(self): """Scenario: Choose a device, then choose a custom aspect ratio. @@ -58,7 +58,7 @@ class Test_Custom_Settings(unittest.TestCase): def choose_device_then_change_size(self): """Scenario: Choose a device, then choose a custom size. - When I choose a device + When I choose a device And I change size Then the selected size is used in the conversion """ @@ -70,5 +70,4 @@ class Test_Custom_Settings(unittest.TestCase): lvc.choose_device_conversion('Galaxy Tab') lvc.choose_custom_size(self, 'on', width=w, height=h) lvc.start_conversions() - assert lvc.verify_size(item, width=w, height=h) - + assert lvc.verify_size(item, width=w, height=h) |