From 043780d603621c98af473857fc8ee45d846b6feb Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Sun, 15 Jan 2017 17:30:02 -0600 Subject: [PATCH] drtio: fix DRTIOSatellite invokation in test --- artiq/test/gateware/drtio/test_full_stack.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artiq/test/gateware/drtio/test_full_stack.py b/artiq/test/gateware/drtio/test_full_stack.py index ce0670a7d..62383d5c3 100644 --- a/artiq/test/gateware/drtio/test_full_stack.py +++ b/artiq/test/gateware/drtio/test_full_stack.py @@ -63,7 +63,7 @@ class DUT(Module): rtio.Channel.from_phy(self.phy2, ofifo_depth=4), ] self.submodules.satellite = DRTIOSatellite( - self.transceivers.bob, rx_synchronizer, rtio_channels) + self.transceivers.bob, rtio_channels, rx_synchronizer) class TestFullStack(unittest.TestCase):