diff options
| author | Jim Lawson | 2016-07-21 09:24:55 -0700 |
|---|---|---|
| committer | Jim Lawson | 2016-07-21 09:24:55 -0700 |
| commit | d269818bdd4f2b71abebfaba9d7f8c9b4d488688 (patch) | |
| tree | a99a7b186413b92fa80b9b22852f381ad5996297 /src/test/scala | |
| parent | 1fa57cc3f76bc3e5de7e6b943abe70becdcb2295 (diff) | |
Ensure test_wire is sinkable.
Diffstat (limited to 'src/test/scala')
| -rw-r--r-- | src/test/scala/chiselTests/TesterDriverSpec.scala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/scala/chiselTests/TesterDriverSpec.scala b/src/test/scala/chiselTests/TesterDriverSpec.scala index 4c1e41c8..b0f3a981 100644 --- a/src/test/scala/chiselTests/TesterDriverSpec.scala +++ b/src/test/scala/chiselTests/TesterDriverSpec.scala @@ -20,7 +20,7 @@ class FinishTester extends BasicTester { stop() } - val test_wire = UInt(1, width = test_wire_width) + val test_wire = Wire(init=UInt(1, test_wire_width)) // though we just set test_wire to 1, the assert below will pass because // the finish will change its value |
