From d519c00aa1ada260ff30bebace856a79b03d4914 Mon Sep 17 00:00:00 2001 From: Matthew Guthaus Date: Thu, 5 Dec 2019 01:06:31 +0000 Subject: [PATCH] Fix contact order in test --- compiler/tests/03_wire_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/tests/03_wire_test.py b/compiler/tests/03_wire_test.py index 2e2db319..74d5ae1e 100755 --- a/compiler/tests/03_wire_test.py +++ b/compiler/tests/03_wire_test.py @@ -42,7 +42,7 @@ class wire_test(openram_test): min_space = 2 * (tech.drc["minwidth_poly"] + tech.drc["minwidth_metal1"]) - layer_stack = ("metal1", "contact", "poly") + layer_stack = ("poly", "contact", "metal1") old_position_list = [[0, 0], [0, 3 * min_space], [1 * min_space, 3 * min_space],