We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e31f147 commit f93fa66Copy full SHA for f93fa66
jvm/src/test/scala/io/kaitai/struct/SimpleMatchers.scala
@@ -29,7 +29,7 @@ trait SimpleMatchers {
29
def shouldEqualPlainly(right: Any)(implicit equality: Equality[T]): Assertion =
30
if (!equality.areEqual(leftSideValue, right)) {
31
throw new exceptions.TestFailedException(
32
- (e: exceptions.StackDepthException) => Some(s"""${leftSideValue} did not equal ${right}"""),
+ (e: exceptions.StackDepthException) => Some(s"""[${leftSideValue}]\n did not equal\n[${right}]"""),
33
None,
34
Position.here
35
)
0 commit comments