From 898efea92e9e13775b39dd7fb92cac420334b9c9 Mon Sep 17 00:00:00 2001 From: ducky Date: Thu, 10 Dec 2015 16:22:59 -0800 Subject: Add BlackBox support and test, refactor execute => assertTesterPasses --- src/test/scala/chiselTests/BitwiseOps.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/test/scala/chiselTests/BitwiseOps.scala') diff --git a/src/test/scala/chiselTests/BitwiseOps.scala b/src/test/scala/chiselTests/BitwiseOps.scala index 31feaada..19aa956c 100644 --- a/src/test/scala/chiselTests/BitwiseOps.scala +++ b/src/test/scala/chiselTests/BitwiseOps.scala @@ -21,7 +21,7 @@ class BitwiseOpsTester(w: Int, _a: Int, _b: Int) extends BasicTester { class BitwiseOpsSpec extends ChiselPropSpec { property("All bit-wise ops should return the correct result") { forAll(safeUIntPair) { case(w: Int, a: Int, b: Int) => - assert(execute{ new BitwiseOpsTester(w, a, b) }) + assertTesterPasses{ new BitwiseOpsTester(w, a, b) } } } } -- cgit v1.2.3