diff options
author | Jesús Eduardo <heckyel@hyperbola.info> | 2018-01-18 17:05:00 -0500 |
---|---|---|
committer | Jesús Eduardo <heckyel@hyperbola.info> | 2018-01-18 17:05:00 -0500 |
commit | ce6658baf93c938d9fc3e407c78d6cf5a31da6eb (patch) | |
tree | 0ac38440dd13511167cfe8cfd51aba50c430f262 | |
parent | d33fa00136d728854ad4099c48e0076af19a8ce8 (diff) | |
download | librevideoconverter-ce6658baf93c938d9fc3e407c78d6cf5a31da6eb.tar.lz librevideoconverter-ce6658baf93c938d9fc3e407c78d6cf5a31da6eb.tar.xz librevideoconverter-ce6658baf93c938d9fc3e407c78d6cf5a31da6eb.zip |
pep8 en test/uitests.sikuli/test_other_conversions.py
-rw-r--r-- | test/uitests.sikuli/test_other_conversions.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/uitests.sikuli/test_other_conversions.py b/test/uitests.sikuli/test_other_conversions.py index d3b744b..9d866e5 100644 --- a/test/uitests.sikuli/test_other_conversions.py +++ b/test/uitests.sikuli/test_other_conversions.py @@ -9,14 +9,16 @@ import datafiles data = datafiles.TestData() + def test_other_conversions(): """Scenario: test other output conversion options. - + """ device_list = devices.devices('Other') for x in device_list: yield convert_to_format, x + def convert_to_format(device_output): print device_output expected_failures = ['fake_video.mp4'] @@ -35,5 +37,3 @@ def convert_to_format(device_output): lvc.verify_completed(item, 120) lvc.clear_finished_files(item) lvc.clear_and_start_over() - - |