fix: instead commenting move constructor call to the top (#704)

This commit is contained in:
Skylot
2019-07-21 19:45:22 +03:00
parent b32dc17dd7
commit c8de7b97dd
5 changed files with 62 additions and 78 deletions
@@ -37,6 +37,6 @@ public class TestInsnsBeforeSuper extends SmaliTest {
ClassNode cls = getClassNodeFromSmaliFiles("B");
String code = cls.getCode().toString();
assertThat(code, containsOne("// checkNull(str);"));
assertThat(code, containsOne("checkNull(str);"));
}
}
@@ -35,6 +35,6 @@ public class TestInsnsBeforeThis extends SmaliTest {
ClassNode cls = getClassNodeFromSmali();
String code = cls.getCode().toString();
assertThat(code, containsOne("// checkNull(str);"));
assertThat(code, containsOne("checkNull(str);"));
}
}