diff options
| author | Jim Lawson | 2015-11-04 15:47:08 -0800 |
|---|---|---|
| committer | Jim Lawson | 2015-11-04 15:47:08 -0800 |
| commit | 56db490d1395aa5603e2688906d5a4f227b187e1 (patch) | |
| tree | 007eabb2dd6aaf2da34d9152ceccc9cbbbfc4266 /src/test/scala/chiselTests/GCD.scala | |
| parent | 9e58aef3abf1e7139d8e6b1068937dfcbb5c9ae3 (diff) | |
| parent | 0300b7db3e87da860c2a70b7f990ebf1c59e8029 (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.scala | 2 |
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) |
