Skip to content

Commit

Permalink
fix order of printing in test
Browse files Browse the repository at this point in the history
  • Loading branch information
bishabosha committed Oct 3, 2024
1 parent d8856bd commit 44a3048
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/run/unroll-caseclass.check
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ Assertion passed: found "hello31337false" + "0"
=== Unrolled Test V3 ===
Assertion passed: found "hello31337false12345"
as expected, no constructor for Unrolled(s: String)
public example.Unrolled(java.lang.String,int,boolean,long)
public example.Unrolled(java.lang.String,int)
public example.Unrolled(java.lang.String,int,boolean)
public example.Unrolled(java.lang.String,int,boolean,long)
Assertion passed: found "cow1true0"
Assertion passed: found "cow2true0"
Assertion passed: found "cow2false0"
Expand Down
2 changes: 1 addition & 1 deletion tests/run/unroll-caseclass/unrolledV3_3.scala
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,6 @@ object UnrollTestPlatformSpecificV3 extends TestUtil {
"hello2false3"
)

cls.getConstructors.foreach(println)
cls.getConstructors.sortBy(_.getParameterCount()).foreach(println)
}
}

0 comments on commit 44a3048

Please sign in to comment.