summaryrefslogtreecommitdiff
path: root/src/test/scala/chiselTests/GCD.scala
diff options
context:
space:
mode:
authorducky2015-11-04 12:50:00 -0800
committerducky2015-11-04 12:50:00 -0800
commit0300b7db3e87da860c2a70b7f990ebf1c59e8029 (patch)
treeaa71e441d612176050531adc85d9688f6c0d9981 /src/test/scala/chiselTests/GCD.scala
parenta3c9680d1e2b84693759747a4779341ba80c4a50 (diff)
Style fixes for test code, so we can go back down to zero style errors for tests
Diffstat (limited to 'src/test/scala/chiselTests/GCD.scala')
-rw-r--r--src/test/scala/chiselTests/GCD.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/scala/chiselTests/GCD.scala b/src/test/scala/chiselTests/GCD.scala
index acc1e84e..f2efbcd5 100644
--- a/src/test/scala/chiselTests/GCD.scala
+++ b/src/test/scala/chiselTests/GCD.scala
@@ -38,7 +38,7 @@ class GCDTester(a: Int, b: Int, z: Int) extends BasicTester {
}
class GCDSpec extends ChiselPropSpec {
-
+
//TODO: use generators and this function to make z's
def gcd(a: Int, b: Int): Int = if(b == 0) a else gcd(b, a%b)