missed go_i/rel_o rename
[soc.git] / src / soc / fu / compunits / test / test_compunit.py
index 349820f8807084d523e64556f9ae5947f66c52a9..393e445b591a7fa70a7cd847a63167119f4fbcf2 100644 (file)
@@ -331,8 +331,8 @@ class TestRunner(FHDLTestCase):
             m.submodules.l0 = l0 = TstL0CacheBuffer(pspec, n_units=1)
             pi = l0.l0.dports[0]
             m.submodules.cu = cu = self.fukls(pi, idx=0, awid=3)
-            m.d.comb += cu.ad.go.eq(cu.ad.rel)  # link addr-go direct to rel
-            m.d.comb += cu.st.go.eq(cu.st.rel)  # link store-go direct to rel
+            m.d.comb += cu.ad.go_i.eq(cu.ad.rel_o)  # link addr direct to rel
+            m.d.comb += cu.st.go_i.eq(cu.st.rel_o)  # link store direct to rel
         else:
             m.submodules.cu = cu = self.fukls(0)
             l0 = None