From b8e3629923686bc0020fc105b7073d7f2d947df4 Mon Sep 17 00:00:00 2001 From: Matt Guthaus Date: Tue, 17 Jul 2018 15:14:22 -0700 Subject: [PATCH] Fix syntax error in unit test --- compiler/tests/20_sram_2bank_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/tests/20_sram_2bank_test.py b/compiler/tests/20_sram_2bank_test.py index 0dee0937..993cae93 100755 --- a/compiler/tests/20_sram_2bank_test.py +++ b/compiler/tests/20_sram_2bank_test.py @@ -34,7 +34,7 @@ class sram_2bank_test(openram_test): self.local_check(a, final_verification=True) debug.info(1, "Two bank, eight way column mux with control logic") - a = sram(word_size=2, num_words=256 num_banks=2, name="sram4") + a = sram(word_size=2, num_words=256, num_banks=2, name="sram4") self.local_check(a, final_verification=True) globals.end_openram()