diff options
author | Jesús Eduardo <heckyel@hyperbola.info> | 2018-01-18 17:10:33 -0500 |
---|---|---|
committer | Jesús Eduardo <heckyel@hyperbola.info> | 2018-01-18 17:10:33 -0500 |
commit | e25425122c12164258bf9ab0fef4b5c0754ceaf5 (patch) | |
tree | e3f6a12fd8aadb2c12f2421acb9e0b9ab1dd1735 | |
parent | ce6658baf93c938d9fc3e407c78d6cf5a31da6eb (diff) | |
download | librevideoconverter-e25425122c12164258bf9ab0fef4b5c0754ceaf5.tar.lz librevideoconverter-e25425122c12164258bf9ab0fef4b5c0754ceaf5.tar.xz librevideoconverter-e25425122c12164258bf9ab0fef4b5c0754ceaf5.zip |
pep8 en 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) |