diff options
author | Paulo Henrique Silva <ph.silva@gmail.com> | 2015-03-18 03:38:52 -0300 |
---|---|---|
committer | Paulo Henrique Silva <ph.silva@gmail.com> | 2015-04-07 18:17:25 -0300 |
commit | b9b20a9644ca7b87493ca5786e2a25ecab132b75 (patch) | |
tree | bce7f467a120e86834872295305ba144ffd5ae8f /gerber/tests/test_excellon_statements.py | |
parent | 820d8aa9034fda56071f3ac2367b80eb0d1cb93a (diff) | |
download | gerbonara-b9b20a9644ca7b87493ca5786e2a25ecab132b75.tar.gz gerbonara-b9b20a9644ca7b87493ca5786e2a25ecab132b75.tar.bz2 gerbonara-b9b20a9644ca7b87493ca5786e2a25ecab132b75.zip |
Fix Excellon repeat command
Diffstat (limited to 'gerber/tests/test_excellon_statements.py')
-rw-r--r-- | gerber/tests/test_excellon_statements.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gerber/tests/test_excellon_statements.py b/gerber/tests/test_excellon_statements.py index eb30db1..2da7c15 100644 --- a/gerber/tests/test_excellon_statements.py +++ b/gerber/tests/test_excellon_statements.py @@ -216,7 +216,7 @@ def test_repeatholestmt_conversion(): def test_repeathole_str(): stmt = RepeatHoleStmt.from_excellon('R4X015Y32', FileSettings()) - assert_equal(str(stmt), '<Repeat Hole: 4 times>') + assert_equal(str(stmt), '<Repeat Hole: 4 times, offset X: 1.5 Y: 32>') def test_commentstmt_factory(): """ Test CommentStmt factory method |