From 6db0658e2336d6405fe1a6acd10dfab39ba8e7ff Mon Sep 17 00:00:00 2001 From: Hamilton Kibbe Date: Sun, 6 Nov 2016 15:08:00 -0500 Subject: Fix tests on python3 --- gerber/tests/test_rs274x.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'gerber/tests/test_rs274x.py') diff --git a/gerber/tests/test_rs274x.py b/gerber/tests/test_rs274x.py index d5acfe8..4c69446 100644 --- a/gerber/tests/test_rs274x.py +++ b/gerber/tests/test_rs274x.py @@ -39,10 +39,9 @@ def test_size_parameter(): def test_conversion(): - import copy top_copper = read(TOP_COPPER_FILE) assert_equal(top_copper.units, 'inch') - top_copper_inch = copy.deepcopy(top_copper) + top_copper_inch = read(TOP_COPPER_FILE) top_copper.to_metric() for statement in top_copper_inch.statements: statement.to_metric() -- cgit