summaryrefslogtreecommitdiff
path: root/src/test/scala/chiselTests/Assert.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/scala/chiselTests/Assert.scala')
-rw-r--r--src/test/scala/chiselTests/Assert.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/scala/chiselTests/Assert.scala b/src/test/scala/chiselTests/Assert.scala
index bf3c8092..efc2e1e7 100644
--- a/src/test/scala/chiselTests/Assert.scala
+++ b/src/test/scala/chiselTests/Assert.scala
@@ -27,8 +27,8 @@ class SucceedingAssertTester() extends BasicTester {
class PipelinedResetModule extends Module {
val io = IO(new Bundle { })
- val a = Reg(init = UInt.Lit(0xbeef))
- val b = Reg(init = UInt.Lit(0xbeef))
+ val a = Reg(init = UInt(0xbeef))
+ val b = Reg(init = UInt(0xbeef))
assert(a === b)
}