From 0bdfd9a5f77aaa3eed552c8303382d8d2db78cf7 Mon Sep 17 00:00:00 2001 From: Fischer Moseley <42497969+fischermoseley@users.noreply.github.com> Date: Thu, 1 Aug 2024 09:50:11 -0700 Subject: [PATCH] tests: fix mem_core_hw --- test/test_mem_core_hw.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_mem_core_hw.py b/test/test_mem_core_hw.py index b2db36a..8ad9b3e 100644 --- a/test/test_mem_core_hw.py +++ b/test/test_mem_core_hw.py @@ -57,7 +57,7 @@ class MemoryCoreLoopbackTest(Elaboratable): m.d.comb += self.manta.cores.mem.user_write_enable.eq(user_write_enable) if self.mode in ["bidirectional", "host_to_fpga"]: - m.d.comb += user_data_out.eq(self.manta.mem_core.user_data_out) + m.d.comb += user_data_out.eq(self.manta.cores.mem.user_data_out) return m