Skip to content

Commit 041c837

Browse files
authored
Merge pull request #127 from ucb-bar/missingInterpolator
Fix missing interpolator.
2 parents 93067a5 + 98d74b8 commit 041c837

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/scala/dsptools/tester/DspTester.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ class DspTester[T <: Module](
197197
}
198198
// UInt + SInt = Bits
199199
case _: Bits => (bi.doubleValue, bi)
200-
case _ => throw DspException("Peeked node ${getName(node)} has incorrect type ${node.getClass.getName}")
200+
case _ => throw DspException(s"Peeked node ${getName(node)} has incorrect type ${node.getClass.getName}")
201201
}
202202
if (dispDsp) logger info s" PEEK ${getName(node)} -> $dblOut, ${bitInfo(node)}"
203203
(dblOut, bigIntOut)

0 commit comments

Comments
 (0)