From 233875001af47b0c7773872f8bd76f1e53ef9e83 Mon Sep 17 00:00:00 2001 From: ducky Date: Fri, 23 Oct 2015 13:12:27 -0700 Subject: Whitespace scalastyle fixes for tests --- src/test/scala/chiselTests/UInt.scala | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'src/test/scala/chiselTests/UInt.scala') diff --git a/src/test/scala/chiselTests/UInt.scala b/src/test/scala/chiselTests/UInt.scala index 8885c71f..3c5e1ab7 100644 --- a/src/test/scala/chiselTests/UInt.scala +++ b/src/test/scala/chiselTests/UInt.scala @@ -1,3 +1,5 @@ +// See LICENSE for license details. + package chiselTests import Chisel._ @@ -8,7 +10,7 @@ import Chisel.testers.BasicTester class GoodBoolConversion extends Module { val io = new Bundle { val u = UInt(1, width = 1).asInput - val b = Bool(OUTPUT) + val b = Bool(OUTPUT) } io.b := io.u.toBool } @@ -16,7 +18,7 @@ class GoodBoolConversion extends Module { class BadBoolConversion extends Module { val io = new Bundle { val u = UInt(1, width = 5).asInput - val b = Bool(OUTPUT) + val b = Bool(OUTPUT) } io.b := io.u.toBool } @@ -28,5 +30,5 @@ class UIntSpec extends ChiselPropSpec with Matchers { property("Bools cannot be created from >1 bit UInts") { a [Exception] should be thrownBy { elaborate(new BadBoolConversion) } - } + } } -- cgit v1.2.3