Skip to content

Commit

Permalink
[firechip] Properly string interpolate exit failure in ScalaTestSuite (
Browse files Browse the repository at this point in the history
  • Loading branch information
davidbiancolin authored Jan 21, 2022
1 parent e8d4e57 commit 70f16cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generators/firechip/src/test/scala/ScalaTestSuite.scala
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ abstract class FireSimTestSuite(
Await result (Future sequence subresults, Duration.Inf)
}
results.flatten foreach { case (name, exitcode) =>
assert(exitcode == 0, "Failed $name")
assert(exitcode == 0, s"Failed $name")
}
}
} else {
Expand Down

0 comments on commit 70f16cb

Please sign in to comment.