aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_video.py
diff options
context:
space:
mode:
authorJesús Eduardo <heckyel@hyperbola.info>2017-09-11 17:47:17 -0500
committerJesús Eduardo <heckyel@hyperbola.info>2017-09-11 17:47:17 -0500
commit14738704ede6dfa6ac79f362a9c1f7f40f470cdc (patch)
tree31c83bdd188ae7b64d7169974d6f066ccfe95367 /test/test_video.py
parenteb1896583afbbb622cadcde1a24e17173f61904f (diff)
downloadlibrevideoconverter-14738704ede6dfa6ac79f362a9c1f7f40f470cdc.tar.lz
librevideoconverter-14738704ede6dfa6ac79f362a9c1f7f40f470cdc.tar.xz
librevideoconverter-14738704ede6dfa6ac79f362a9c1f7f40f470cdc.zip
rename mvc at lvc
Diffstat (limited to 'test/test_video.py')
-rw-r--r--test/test_video.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/test_video.py b/test/test_video.py
index 821066f..3eb40de 100644
--- a/test/test_video.py
+++ b/test/test_video.py
@@ -5,7 +5,7 @@ import unittest
import mock
-from mvc import video
+from lvc import video
import base
class GetMediaInfoTest(base.Test):
@@ -148,7 +148,7 @@ class GetThumbnailTest(base.Test):
def generate_thumbnail(self, width, height):
completion = mock.Mock()
- with mock.patch('mvc.video.idle_add') as mock_idle_add:
+ with mock.patch('lvc.video.idle_add') as mock_idle_add:
with mock.patch('threading.Thread') as mock_thread:
video.get_thumbnail(self.video_path, width, height,
self.temp_path.name, completion,
@@ -202,7 +202,7 @@ class VideoFileTest(base.Test):
just runs the code in the current thread
"""
completion = mock.Mock()
- with mock.patch('mvc.video.idle_add') as mock_idle_add:
+ with mock.patch('lvc.video.idle_add') as mock_idle_add:
with mock.patch('threading.Thread') as mock_thread:
initial_rv = self.video.get_thumbnail(completion, **kwargs)
if initial_rv is not None: