Skip to content

Commit

Permalink
Update test.py
Browse files Browse the repository at this point in the history
  • Loading branch information
afasolino authored May 29, 2024
1 parent 704fd6b commit 73cbbe5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,14 +108,14 @@ async def test_project(dut):
await ClockCycles(dut.clk, 4)

#assert dut.uo_out.value == 30
dut._log.info("Use of %d attribute is deprecated" % dut.uo_out.value)
dut._log.info("Use of %d attribute is deprecated" % dut.uo_out.value)

dut.uio_in.value = 4
await ClockCycles(dut.clk, 4)

dut.uio_in.value = 0
await ClockCycles(dut.clk, 4)
dut._log.info("Use of %d attribute is deprecated" % dut.uo_out.value)
dut._log.info("Use of %d attribute is deprecated" % dut.uo_out.value)

#assert dut.uo_out.value == 0
dut.uio_in.value = 4

0 comments on commit 73cbbe5

Please sign in to comment.