summaryrefslogtreecommitdiff
path: root/src/test/scala/chiselTests/BitsOps.scala
diff options
context:
space:
mode:
authorHenry Cook2015-08-13 13:59:46 -0700
committerHenry Cook2015-08-13 15:49:06 -0700
commite1bdf1eea5b00917b26bea24b25b3911a56fe849 (patch)
treeb9aa731eb334894e929b530233822ea4e69c76d9 /src/test/scala/chiselTests/BitsOps.scala
parent4a347c950fc51176a6e794835bfec6d86f989546 (diff)
minor tweaks
Diffstat (limited to 'src/test/scala/chiselTests/BitsOps.scala')
-rw-r--r--src/test/scala/chiselTests/BitsOps.scala5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/test/scala/chiselTests/BitsOps.scala b/src/test/scala/chiselTests/BitsOps.scala
index 0c9128c4..7cd695e6 100644
--- a/src/test/scala/chiselTests/BitsOps.scala
+++ b/src/test/scala/chiselTests/BitsOps.scala
@@ -31,10 +31,9 @@
package chiselTests
import Chisel._
-import Chisel.testers._
import org.scalatest._
import org.scalatest.prop._
-import org.scalatest.prop.GeneratorDrivenPropertyChecks._
+import Chisel.testers.BasicTester
class BitwiseOps(w: Int) extends Module {
val io = new Bundle {
@@ -67,7 +66,7 @@ class BitwiseOpsSpec extends ChiselSpec {
"BitwiseOps" should "return the correct result" in {
forAll(safeUInts, safeUInts) { (a: Int, b: Int) =>
- assert(TesterDriver.execute{ new BitwiseOpsTester(32, a, b) })
+ assert(execute{ new BitwiseOpsTester(32, a, b) })
}
}
}