From 63941a10e1cda830debb445693531c0e4980a935 Mon Sep 17 00:00:00 2001 From: mrg Date: Thu, 12 Nov 2020 10:01:38 -0800 Subject: [PATCH] Add None as sp_file parameter to local_drc_check --- compiler/tests/testutils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/tests/testutils.py b/compiler/tests/testutils.py index cc76d0c0..d60dde40 100644 --- a/compiler/tests/testutils.py +++ b/compiler/tests/testutils.py @@ -25,7 +25,7 @@ class openram_test(unittest.TestCase): w.gds_write(tempgds) import verify - result=verify.run_drc(w.name, tempgds) + result=verify.run_drc(w.name, tempgds, None) if result != 0: self.fail("DRC failed: {}".format(w.name))