summaryrefslogtreecommitdiff
path: root/src/test/scala/chiselTests/Counter.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/scala/chiselTests/Counter.scala')
-rw-r--r--src/test/scala/chiselTests/Counter.scala4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/test/scala/chiselTests/Counter.scala b/src/test/scala/chiselTests/Counter.scala
index 90e3afa3..0e8601b3 100644
--- a/src/test/scala/chiselTests/Counter.scala
+++ b/src/test/scala/chiselTests/Counter.scala
@@ -1,3 +1,5 @@
+// See LICENSE for license details.
+
package chiselTests
import Chisel._
import org.scalatest._
@@ -21,7 +23,7 @@ class CounterSpec extends ChiselPropSpec {
val (cntEn, cntWrap) = Counter(ens(0), 32)
val cnt = Counter(32)
when(cnt.value === UInt(31)) {
- io.done := Bool(true)
+ io.done := Bool(true)
io.error := cnt.value != UInt(popCount(seed))
}
}