summaryrefslogtreecommitdiff
path: root/src/test/scala/chiselTests/CompatibilitySpec.scala
diff options
context:
space:
mode:
authorJack Koenig2018-02-20 11:21:59 -0800
committerGitHub2018-02-20 11:21:59 -0800
commit853a88bc6ffeb37ac26de6c893cf6509bb1c7ca1 (patch)
treeed5a04f62ad50234a70ef6055666fbf604419509 /src/test/scala/chiselTests/CompatibilitySpec.scala
parent7f6f1cee2da468fb657d40c14d0a583696cc7105 (diff)
Make Bundle abstract (#774)
Diffstat (limited to 'src/test/scala/chiselTests/CompatibilitySpec.scala')
-rw-r--r--src/test/scala/chiselTests/CompatibilitySpec.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/scala/chiselTests/CompatibilitySpec.scala b/src/test/scala/chiselTests/CompatibilitySpec.scala
index 7feee96f..d24c3b4d 100644
--- a/src/test/scala/chiselTests/CompatibilitySpec.scala
+++ b/src/test/scala/chiselTests/CompatibilitySpec.scala
@@ -69,7 +69,7 @@ class CompatibiltySpec extends ChiselFlatSpec with GeneratorDrivenPropertyChecks
it should "successfully compile a complete module" in {
class Dummy extends Module {
// The following just checks that we can create objects with nothing more than the Chisel compatibility package.
- val io = new Bundle
+ val io = new Bundle {}
val data = UInt(width = 3)
new ArbiterIO(data, 2) shouldBe a [ArbiterIO[_]]
new LockingRRArbiter(data, 2, 2, None) shouldBe a [LockingRRArbiter[_]]