diff options
author | Jesús Eduardo <heckyel@hyperbola.info> | 2018-01-18 16:43:06 -0500 |
---|---|---|
committer | Jesús Eduardo <heckyel@hyperbola.info> | 2018-01-18 16:43:06 -0500 |
commit | 78fc2e84e42cd4b771c2cfc6f6619cc13f8f9cd5 (patch) | |
tree | 457be1ec10045a8e6e3434a285afd502eede17b4 | |
parent | f2cce1962d2abafa27479559f32b243860980fed (diff) | |
download | librevideoconverter-78fc2e84e42cd4b771c2cfc6f6619cc13f8f9cd5.tar.lz librevideoconverter-78fc2e84e42cd4b771c2cfc6f6619cc13f8f9cd5.tar.xz librevideoconverter-78fc2e84e42cd4b771c2cfc6f6619cc13f8f9cd5.zip |
pep8 en test/uitests.sikuli/test_apple_conversions.py
-rw-r--r-- | test/uitests.sikuli/test_apple_conversions.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/test/uitests.sikuli/test_apple_conversions.py b/test/uitests.sikuli/test_apple_conversions.py index 794974d..4761a05 100644 --- a/test/uitests.sikuli/test_apple_conversions.py +++ b/test/uitests.sikuli/test_apple_conversions.py @@ -9,9 +9,9 @@ import datafiles data = datafiles.TestData() + def test_apple_conversions(): """Scenario: test each android conversion option. - """ device_list = devices.devices('Apple') for x in device_list: @@ -41,6 +41,7 @@ def device_defaults(device_output, lvc): assert lvc.verify_device_format_selected(device_output) assert lvc.verify_device_size_default(str(width), str(height)) + def convert_to_format(device_output): print device_output expected_failures = ['fake_video.mp4'] @@ -59,5 +60,3 @@ def convert_to_format(device_output): lvc.verify_completed(item, 120) lvc.clear_finished_files(item) lvc.clear_and_start_over() - - |