Skip to content

Commit ddf2799

Browse files
authored
Merge pull request #4047 from dotty-staging/small-fix-in-idempotency-tests
Fix error message from IdempotencyTests
2 parents 579de32 + 7373d6c commit ddf2799

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/idempotency/IdempotencyCheck.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ object IdempotencyCheck {
5353
val tastyBytes1 = JFiles.readAllBytes(tasty1)
5454
val tastyBytes2 = JFiles.readAllBytes(tasty2)
5555
if (java.util.Arrays.equals(tastyBytes1, tastyBytes2))
56-
println(s"Idempotency test failed between $class1 and $class1 (same tasty)")
56+
println(s"Idempotency test failed between $class1 and $class2 (same tasty)")
5757
else
5858
println(s"Idempotency test failed between $tasty1 and $tasty2")
5959
/* Dump bytes to console, could be useful if issue only appears in CI.

0 commit comments

Comments
 (0)