Преглед на файлове

Change relative imports to absolute.

Gary van der Merwe преди 11 години
родител
ревизия
7514a74041
променени са 5 файла, в които са добавени 5 реда и са изтрити 5 реда
  1. 1 1
      dulwich/tests/test_missing_obj_finder.py
  2. 1 1
      dulwich/tests/test_objects.py
  3. 1 1
      dulwich/tests/test_pack.py
  4. 1 1
      dulwich/tests/test_utils.py
  5. 1 1
      dulwich/tests/test_walk.py

+ 1 - 1
dulwich/tests/test_missing_obj_finder.py

@@ -23,7 +23,7 @@ from dulwich.objects import (
     Blob,
     )
 from dulwich.tests import TestCase
-from utils import (
+from dulwich.tests.utils import (
     make_object,
     build_commit_graph,
     )

+ 1 - 1
dulwich/tests/test_objects.py

@@ -56,7 +56,7 @@ from dulwich.objects import (
 from dulwich.tests import (
     TestCase,
     )
-from utils import (
+from dulwich.tests.utils import (
     make_commit,
     make_object,
     functest_builder,

+ 1 - 1
dulwich/tests/test_pack.py

@@ -71,7 +71,7 @@ from dulwich.pack import (
 from dulwich.tests import (
     TestCase,
     )
-from utils import (
+from dulwich.tests.utils import (
     make_object,
     build_pack,
     )

+ 1 - 1
dulwich/tests/test_utils.py

@@ -28,7 +28,7 @@ from dulwich.objects import (
 from dulwich.tests import (
     TestCase,
     )
-from utils import (
+from dulwich.tests.utils import (
     make_object,
     build_commit_graph,
     )

+ 1 - 1
dulwich/tests/test_walk.py

@@ -47,7 +47,7 @@ from dulwich.walk import (
     _topo_reorder
     )
 from dulwich.tests import TestCase
-from utils import (
+from dulwich.tests.utils import (
     F,
     make_object,
     build_commit_graph,