summaryrefslogtreecommitdiff
path: root/src/test/scala/chiselTests/GCD.scala
diff options
context:
space:
mode:
authorJim Lawson2015-11-04 15:47:08 -0800
committerJim Lawson2015-11-04 15:47:08 -0800
commit56db490d1395aa5603e2688906d5a4f227b187e1 (patch)
tree007eabb2dd6aaf2da34d9152ceccc9cbbbfc4266 /src/test/scala/chiselTests/GCD.scala
parent9e58aef3abf1e7139d8e6b1068937dfcbb5c9ae3 (diff)
parent0300b7db3e87da860c2a70b7f990ebf1c59e8029 (diff)
Merge pull request #56 from ucb-bar/stylefix
Style fixes for test code
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)