blob: 0ae1395d6382931a6b74a7669124814d2ac427f1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
--- contrib/python/jmespath/py3/tests/test_compliance.py (index)
+++ contrib/python/jmespath/py3/tests/test_compliance.py (working tree)
@@ -3,2 +3,2 @@
-from tests import OrderedDict
-from tests import json
+from . import OrderedDict
+from . import json
--- contrib/python/jmespath/py3/tests/test_parser.py (index)
+++ contrib/python/jmespath/py3/tests/test_parser.py (working tree)
@@ -6,1 +6,1 @@ import re
-from tests import unittest, OrderedDict
+from . import unittest, OrderedDict
--- contrib/python/jmespath/py3/tests/test_functions.py (index)
+++ contrib/python/jmespath/py3/tests/test_functions.py (working tree)
@@ -2 +2 @@
-from tests import unittest
+from . import unittest
--- contrib/python/jmespath/py3/tests/test_lexer.py (index)
+++ contrib/python/jmespath/py3/tests/test_lexer.py (working tree)
@@ -1 +1 @@
-from tests import unittest
+from . import unittest
--- contrib/python/jmespath/py3/tests/test_search.py (index)
+++ contrib/python/jmespath/py3/tests/test_search.py (working tree)
@@ -3 +3 @@ import decimal
-from tests import unittest, OrderedDict
+from . import unittest, OrderedDict
|