From 0e86cfa84513b07ea3f485071d1c9b9e5779eacd Mon Sep 17 00:00:00 2001 From: Tobias Platen Date: Thu, 9 Apr 2020 11:12:34 +0200 Subject: [PATCH] fix 'Object is not an nMigen signal' error in test_sim.py --- src/soc/simulator/test_sim.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/soc/simulator/test_sim.py b/src/soc/simulator/test_sim.py index 1c31075a..068beacd 100644 --- a/src/soc/simulator/test_sim.py +++ b/src/soc/simulator/test_sim.py @@ -46,7 +46,7 @@ class DecoderTestCase(FHDLTestCase): sim.add_process(process) with sim.write_vcd("simulator.vcd", "simulator.gtkw", - traces=[pdecode2.ports()]): + traces=pdecode2.ports()): sim.run() def test_example(self): -- 2.30.2