diff --git a/trunk/test/com/jpexs/decompiler/flash/ExportTest.java b/trunk/test/com/jpexs/decompiler/flash/ExportTest.java index a791a465d..1f013d6c5 100644 --- a/trunk/test/com/jpexs/decompiler/flash/ExportTest.java +++ b/trunk/test/com/jpexs/decompiler/flash/ExportTest.java @@ -92,7 +92,7 @@ public class ExportTest { public void testDecompile(File f, ExportMode exportMode) { try { SWF swf = new SWF(new FileInputStream(f), false); - Configuration.DEBUG_COPY = true; + Configuration.debugCopy.set(true); String folderName = exportMode == ExportMode.SOURCE ? "output" : "outputp"; File fdir = new File(TESTDATADIR + File.separator + folderName + File.separator + f.getName()); fdir.mkdirs(); diff --git a/trunk/test/com/jpexs/decompiler/flash/RecompileTest.java b/trunk/test/com/jpexs/decompiler/flash/RecompileTest.java index 0962bd39b..c9d357b96 100644 --- a/trunk/test/com/jpexs/decompiler/flash/RecompileTest.java +++ b/trunk/test/com/jpexs/decompiler/flash/RecompileTest.java @@ -17,7 +17,7 @@ public class RecompileTest { private void testRecompileOne(String filename) { try { SWF swf = new SWF(new FileInputStream(TESTDATADIR + File.separator + filename), false); - Configuration.DEBUG_COPY = true; + Configuration.debugCopy.set(true); swf.saveTo(new ByteArrayOutputStream()); } catch (IOException ex) { fail();