summaryrefslogtreecommitdiff
path: root/gerber/tests/test_excellon.py
diff options
context:
space:
mode:
authorPaulo Henrique Silva <ph.silva@gmail.com>2015-02-19 00:36:26 -0200
committerPaulo Henrique Silva <ph.silva@gmail.com>2015-02-19 00:36:26 -0200
commit4b92e1b59dcaff48bda4e1c906506432651fcd4f (patch)
treea1e0e32e4988cf66840dcae69c823d731069c1dd /gerber/tests/test_excellon.py
parent67f2af2015914da1cd8e06c254c8b6ff347fc9b2 (diff)
parente71d7a24b5be3e68d36494869595eec934db4bd2 (diff)
downloadgerbonara-4b92e1b59dcaff48bda4e1c906506432651fcd4f.tar.gz
gerbonara-4b92e1b59dcaff48bda4e1c906506432651fcd4f.tar.bz2
gerbonara-4b92e1b59dcaff48bda4e1c906506432651fcd4f.zip
Merge pull request #19 from curtacircuitos/python3
Python 3 tests passing
Diffstat (limited to 'gerber/tests/test_excellon.py')
-rw-r--r--gerber/tests/test_excellon.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/gerber/tests/test_excellon.py b/gerber/tests/test_excellon.py
index 24cf793..d47ad6a 100644
--- a/gerber/tests/test_excellon.py
+++ b/gerber/tests/test_excellon.py
@@ -7,7 +7,7 @@ import os
from ..cam import FileSettings
from ..excellon import read, detect_excellon_format, ExcellonFile, ExcellonParser
from ..excellon_statements import ExcellonTool
-from tests import *
+from .tests import *
NCDRILL_FILE = os.path.join(os.path.dirname(__file__),
@@ -47,14 +47,14 @@ def test_conversion():
ncdrill.to_metric()
assert_equal(ncdrill.settings.units, 'metric')
- for tool in ncdrill_inch.tools.itervalues():
+ for tool in iter(ncdrill_inch.tools.values()):
tool.to_metric()
for primitive in ncdrill_inch.primitives:
primitive.to_metric()
for statement in ncdrill_inch.statements:
statement.to_metric()
- for m_tool, i_tool in zip(ncdrill.tools.itervalues(), ncdrill_inch.tools.itervalues()):
+ for m_tool, i_tool in zip(iter(ncdrill.tools.values()), iter(ncdrill_inch.tools.values())):
assert_equal(i_tool, m_tool)
for m, i in zip(ncdrill.primitives,ncdrill_inch.primitives):