From f098b995f06fe4472db591e98fe61a969cc5860a Mon Sep 17 00:00:00 2001 From: Matt Guthaus Date: Thu, 26 Jul 2018 14:20:00 -0700 Subject: [PATCH] Fix pinvbuf test to use new interface with only driver size. --- compiler/tests/04_pinvbuf_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/tests/04_pinvbuf_test.py b/compiler/tests/04_pinvbuf_test.py index ffe6fa33..3b16c1c9 100755 --- a/compiler/tests/04_pinvbuf_test.py +++ b/compiler/tests/04_pinvbuf_test.py @@ -21,7 +21,7 @@ class pinvbuf_test(openram_test): import pinvbuf debug.info(2, "Testing inverter/buffer 4x 8x") - a = pinvbuf.pinvbuf(4,8) + a = pinvbuf.pinvbuf(8) self.local_check(a) globals.end_openram()