diff options
author | Garret Fick <garret@ficksworkshop.com> | 2016-07-16 15:49:48 +0800 |
---|---|---|
committer | Garret Fick <garret@ficksworkshop.com> | 2016-07-16 15:49:48 +0800 |
commit | 52c6d4928a1b5fc65b95cf5b0784a560cec2ca1d (patch) | |
tree | 7e117c69b2c2310926bf677f719bb7406c2e3e43 /gerber/tests/test_excellon.py | |
parent | 09ebeb6e244ff91f20e1813bca51102fd2e1077f (diff) | |
download | gerbonara-52c6d4928a1b5fc65b95cf5b0784a560cec2ca1d.tar.gz gerbonara-52c6d4928a1b5fc65b95cf5b0784a560cec2ca1d.tar.bz2 gerbonara-52c6d4928a1b5fc65b95cf5b0784a560cec2ca1d.zip |
Fix most broken tests so that I can safely merge into changes with known expected test result
Diffstat (limited to 'gerber/tests/test_excellon.py')
-rw-r--r-- | gerber/tests/test_excellon.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gerber/tests/test_excellon.py b/gerber/tests/test_excellon.py index 705adc3..afc2917 100644 --- a/gerber/tests/test_excellon.py +++ b/gerber/tests/test_excellon.py @@ -78,8 +78,9 @@ def test_conversion(): 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,inch_primitives): - assert_equal(m, i) + for m, i in zip(ncdrill.primitives, inch_primitives): + 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(): |