summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/git/mp/__init__.py0
-rw-r--r--test/git/mp/test_channel.py (renamed from test/git/odb/test_channel.py)2
-rw-r--r--test/git/mp/test_pool.py (renamed from test/git/odb/test_pool.py)2
-rw-r--r--test/git/mp/test_thread.py (renamed from test/git/odb/test_thread.py)2
4 files changed, 3 insertions, 3 deletions
diff --git a/test/git/mp/__init__.py b/test/git/mp/__init__.py
new file mode 100644
index 00000000..e69de29b
--- /dev/null
+++ b/test/git/mp/__init__.py
diff --git a/test/git/odb/test_channel.py b/test/git/mp/test_channel.py
index d845a6ec..9b667372 100644
--- a/test/git/odb/test_channel.py
+++ b/test/git/mp/test_channel.py
@@ -1,6 +1,6 @@
"""Channel testing"""
from test.testlib import *
-from git.odb.channel import *
+from git.mp.channel import *
import time
diff --git a/test/git/odb/test_pool.py b/test/git/mp/test_pool.py
index 6656c69d..7c4a366f 100644
--- a/test/git/odb/test_pool.py
+++ b/test/git/mp/test_pool.py
@@ -1,6 +1,6 @@
"""Channel testing"""
from test.testlib import *
-from git.odb.pool import *
+from git.mp.pool import *
import time
diff --git a/test/git/odb/test_thread.py b/test/git/mp/test_thread.py
index 674ecc1d..9625aabb 100644
--- a/test/git/odb/test_thread.py
+++ b/test/git/mp/test_thread.py
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
""" Test thead classes and functions"""
from test.testlib import *
-from git.odb.thread import *
+from git.mp.thread import *
from Queue import Queue
class TestWorker(WorkerThread):