aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesús <heckyel@hyperbola.info>2020-06-02 17:55:29 -0500
committerJesús <heckyel@hyperbola.info>2020-06-02 17:55:29 -0500
commitcc3990dcfaa0349f207fa4db8e907f12761f9538 (patch)
treef76e51583376c73006805efb0bba005820e72ea3
parent7a1417b7c3fb4597010788b0db6e6985211e6716 (diff)
downloadlibrevideoconverter-cc3990dcfaa0349f207fa4db8e907f12761f9538.tar.lz
librevideoconverter-cc3990dcfaa0349f207fa4db8e907f12761f9538.tar.xz
librevideoconverter-cc3990dcfaa0349f207fa4db8e907f12761f9538.zip
pep8
-rw-r--r--test/test_video.py10
1 files changed, 6 insertions, 4 deletions
diff --git a/test/test_video.py b/test/test_video.py
index 0bfc2ae..0f9c205 100644
--- a/test/test_video.py
+++ b/test/test_video.py
@@ -143,8 +143,9 @@ class GetThumbnailTest(base.Test):
def setUp(self):
base.Test.setUp(self)
- self.video_path = os.path.join(self.testdata_dir,
- 'theora.ogv')
+ self.video_path = os.path.join(
+ self.testdata_dir,
+ 'theora.ogv')
self.temp_path = tempfile.NamedTemporaryFile(
suffix='.png')
@@ -193,8 +194,9 @@ class VideoFileTest(base.Test):
def setUp(self):
base.Test.setUp(self)
- self.video_path = os.path.join(self.testdata_dir,
- 'theora.ogv')
+ self.video_path = os.path.join(
+ self.testdata_dir,
+ 'theora.ogv')
self.video = video.VideoFile(self.video_path)
self.video.thumbnails = {}