diff options
| author | azidar | 2016-01-28 13:31:29 -0800 |
|---|---|---|
| committer | azidar | 2016-01-28 13:31:29 -0800 |
| commit | 8d8c407c0c1693160d6f0972165e376e09aa99c9 (patch) | |
| tree | 6a0cee874ce6e86ed666970b2db78bd4b84161a4 /src/test | |
| parent | f907fae9df8fccfc8c0a91941126e6627fceb84e (diff) | |
Fixed NoneOptionBundleTester to actually instantiate a module without an input port
Diffstat (limited to 'src/test')
| -rw-r--r-- | src/test/scala/chiselTests/OptionBundle.scala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/scala/chiselTests/OptionBundle.scala b/src/test/scala/chiselTests/OptionBundle.scala index b23c1f6b..0e6beb86 100644 --- a/src/test/scala/chiselTests/OptionBundle.scala +++ b/src/test/scala/chiselTests/OptionBundle.scala @@ -32,7 +32,7 @@ class SomeOptionBundleTester(expected: Boolean) extends BasicTester { } class NoneOptionBundleTester() extends BasicTester { - val mod = Module(new OptionBundleModule(true)) + val mod = Module(new OptionBundleModule(false)) assert(mod.io.out === Bool(false)) stop() } |
