summaryrefslogtreecommitdiff
path: root/gerber/tests
diff options
context:
space:
mode:
Diffstat (limited to 'gerber/tests')
-rw-r--r--gerber/tests/test_cam.py2
-rw-r--r--gerber/tests/test_common.py2
-rw-r--r--gerber/tests/test_primitives.py2
-rw-r--r--gerber/tests/test_rs274x.py2
4 files changed, 4 insertions, 4 deletions
diff --git a/gerber/tests/test_cam.py b/gerber/tests/test_cam.py
index 6296cc9..00a8285 100644
--- a/gerber/tests/test_cam.py
+++ b/gerber/tests/test_cam.py
@@ -4,7 +4,7 @@
# Author: Hamilton Kibbe <ham@hamiltonkib.be>
from ..cam import CamFile, FileSettings
-from tests import *
+from .tests import *
def test_filesettings_defaults():
diff --git a/gerber/tests/test_common.py b/gerber/tests/test_common.py
index bf9760a..76e3991 100644
--- a/gerber/tests/test_common.py
+++ b/gerber/tests/test_common.py
@@ -5,7 +5,7 @@
from ..common import read
from ..excellon import ExcellonFile
from ..rs274x import GerberFile
-from tests import *
+from .tests import *
import os
diff --git a/gerber/tests/test_primitives.py b/gerber/tests/test_primitives.py
index cada6d4..dab0225 100644
--- a/gerber/tests/test_primitives.py
+++ b/gerber/tests/test_primitives.py
@@ -3,7 +3,7 @@
# Author: Hamilton Kibbe <ham@hamiltonkib.be>
from ..primitives import *
-from tests import *
+from .tests import *
def test_primitive_implementation_warning():
diff --git a/gerber/tests/test_rs274x.py b/gerber/tests/test_rs274x.py
index 27f6f49..5185fa1 100644
--- a/gerber/tests/test_rs274x.py
+++ b/gerber/tests/test_rs274x.py
@@ -5,7 +5,7 @@
import os
from ..rs274x import read, GerberFile
-from tests import *
+from .tests import *
TOP_COPPER_FILE = os.path.join(os.path.dirname(__file__),