summaryrefslogtreecommitdiff
path: root/gerber/tests/test_excellon.py
diff options
context:
space:
mode:
Diffstat (limited to 'gerber/tests/test_excellon.py')
-rw-r--r--gerber/tests/test_excellon.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/gerber/tests/test_excellon.py b/gerber/tests/test_excellon.py
index e7c77c6..1402938 100644
--- a/gerber/tests/test_excellon.py
+++ b/gerber/tests/test_excellon.py
@@ -81,7 +81,8 @@ def test_conversion():
assert_equal(i_tool, m_tool)
for m, i in zip(ncdrill.primitives, inch_primitives):
- assert_equal(m, i)
+ assert_equal(m.position, i.position, '%s not equal to %s' % (m, i))
+ assert_equal(m.diameter, i.diameter, '%s not equal to %s' % (m, i))
def test_parser_hole_count():