File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
compiler/test/dotty/tools/dotc/transform Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -17,8 +17,9 @@ class SpecializeTuplesTests extends DottyBytecodeTest {
1717 |}""" .stripMargin
1818
1919 checkBCode(source) { dir =>
20- assertNoBoxing(" foo" , findClass(" Test" , dir).methods)
21- assertNoBoxing(" bar" , findClass(" Test" , dir).methods)
20+ val methods = findClass(" Test" , dir).methods.nn
21+ assertNoBoxing(" foo" , methods)
22+ assertNoBoxing(" bar" , methods)
2223 }
2324 }
2425
@@ -39,7 +40,7 @@ class SpecializeTuplesTests extends DottyBytecodeTest {
3940 |}""" .stripMargin
4041
4142 checkBCode(source) { dir =>
42- val methods = findClass(" Test" , dir).methods
43+ val methods = findClass(" Test" , dir).methods.nn
4344 assertBoxing(" t" , methods)
4445 assertBoxing(" _1" , methods)
4546 assertBoxing(" _2" , methods)
You can’t perform that action at this time.
0 commit comments