decompiler: do not fail on the invalid bytecode in IDEA

This commit is contained in:
Egor Ushakov
2018-04-27 15:04:03 +03:00
parent a74a9d7d25
commit 8be977e76c
3 changed files with 7 additions and 5 deletions

View File

@@ -23,7 +23,8 @@ public class SingleClassesTest {
public void setUp() throws IOException {
fixture = new DecompilerTestFixture();
fixture.setUp(IFernflowerPreferences.BYTECODE_SOURCE_MAPPING, "1",
IFernflowerPreferences.DUMP_ORIGINAL_LINES, "1");
IFernflowerPreferences.DUMP_ORIGINAL_LINES, "1",
IFernflowerPreferences.FAIL_ON_INVALID_BYTECODE, "0");
}
@After