aboutsummaryrefslogtreecommitdiffstats
path: root/test/runtests.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/runtests.py')
-rw-r--r--test/runtests.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/runtests.py b/test/runtests.py
index 7664487..83c75f3 100644
--- a/test/runtests.py
+++ b/test/runtests.py
@@ -1,9 +1,9 @@
try:
- import mvc
+ import lvc
except ImportError:
import os.path, sys
- mvc_path = os.path.join(os.path.dirname(__file__), '..')
- sys.path.append(mvc_path)
+ lvc_path = os.path.join(os.path.dirname(__file__), '..')
+ sys.path.append(lvc_path)
from test_video import *
from test_converter import *
@@ -12,6 +12,6 @@ from test_utils import *
if __name__ == "__main__":
import unittest
- from mvc.widgets import initialize
+ from lvc.widgets import initialize
initialize(None)
unittest.main()