Skip to content

Commit 3e2ab41

Browse files
committed
Fix indentation in test
1 parent cf3b9b0 commit 3e2ab41

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/run-staging/shonan-hmm-simple.scala

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,7 @@ case class Complex[T](re: T, im: T)
7171

7272
object Complex
7373
implicit def isLiftable[T: Type: Liftable]: Liftable[Complex[T]] = new Liftable[Complex[T]]
74-
def toExpr(comp: Complex[T]) = '{Complex(${comp.re}, ${comp.im})}
75-
74+
def toExpr(comp: Complex[T]) = '{Complex(${comp.re}, ${comp.im})}
7675

7776
case class Vec[Idx, T](size: Idx, get: Idx => T) {
7877
def map[U](f: T => U): Vec[Idx, U] = Vec(size, i => f(get(i)))

0 commit comments

Comments
 (0)