Skip to content

Commit d1a7346

Browse files
committed
Change println to assert in run test
1 parent 810a396 commit d1a7346

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/run/i17555.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ class D() extends A, Serializable {
1313
}
1414

1515
@main def Test =
16-
println(C())
17-
println(D())
16+
assert(C().toString == "B")
17+
assert(D().toString == "B")

0 commit comments

Comments
 (0)