From f2cb25cf22b2a2c3a9b879783d63f7c6cec322a8 Mon Sep 17 00:00:00 2001 From: Lukas Chrostowski Date: Mon, 4 Nov 2024 00:14:05 -0800 Subject: [PATCH] Update test_scripts_layout_diff.py --- .../python/SiEPIC/tests/test_scripts_layout_diff.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/klayout_dot_config/python/SiEPIC/tests/test_scripts_layout_diff.py b/klayout_dot_config/python/SiEPIC/tests/test_scripts_layout_diff.py index c36f91c5..75ef0b87 100644 --- a/klayout_dot_config/python/SiEPIC/tests/test_scripts_layout_diff.py +++ b/klayout_dot_config/python/SiEPIC/tests/test_scripts_layout_diff.py @@ -50,14 +50,10 @@ def test_layout_diff(): print(num_diff) assert num_diff == 123 - cell3 = cell1.dup() num_diff = layout_diff(cell1, cell3) print(num_diff) assert num_diff == 0 - - - if __name__ == "__main__": test_layout_diff()