From 88da1f91e745bcb5b35cfd3bfb0e5e31768b194c Mon Sep 17 00:00:00 2001 From: Rutherther Date: Thu, 2 Jan 2025 19:31:42 +0100 Subject: [PATCH] tests: fix _t meaning (tri state) --- hdl_spi/tests/test_spi_masterslave.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hdl_spi/tests/test_spi_masterslave.py b/hdl_spi/tests/test_spi_masterslave.py index a29b77c..e4d67f0 100644 --- a/hdl_spi/tests/test_spi_masterslave.py +++ b/hdl_spi/tests/test_spi_masterslave.py @@ -307,7 +307,7 @@ async def rx_tx_disabled(dut): await FallingEdge(dut.clk_i) await FallingEdge(dut.clk_i) - assert int(dut.mosi_t.value) == 0 + assert int(dut.mosi_t.value) == 1 await slave.send_data(tx, 8) await slave.expect_transaction_in(15, "ns") -- 2.48.1