From 27bb3b1707aec9e78dd6e45dacec8a8351abef06 Mon Sep 17 00:00:00 2001 From: "honfika@gmail.com" Date: Mon, 31 Aug 2015 13:29:53 +0200 Subject: [PATCH] typo fix --- .../decompiler/flash/ActionScript3AssemblerTest.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libsrc/ffdec_lib/test/com/jpexs/decompiler/flash/ActionScript3AssemblerTest.java b/libsrc/ffdec_lib/test/com/jpexs/decompiler/flash/ActionScript3AssemblerTest.java index 307713d45..6da87244e 100644 --- a/libsrc/ffdec_lib/test/com/jpexs/decompiler/flash/ActionScript3AssemblerTest.java +++ b/libsrc/ffdec_lib/test/com/jpexs/decompiler/flash/ActionScript3AssemblerTest.java @@ -115,10 +115,10 @@ public class ActionScript3AssemblerTest extends ActionScriptTestBase { } @Test - public void replaceIstruction() throws Exception { + public void replaceInstruction() throws Exception { MethodBody b = compilePCode("pushbyte 1\r\n" + "setlocal_1\r\n" - + "jump label1\r\n" //remove this + + "jump label1\r\n" //remove this + "jump label1\r\n" + "pushtrue\r\n" + "pop\r\n" @@ -127,12 +127,12 @@ public class ActionScript3AssemblerTest extends ActionScriptTestBase { } @Test - public void replaceIstruction2() throws Exception { + public void replaceInstruction2() throws Exception { MethodBody b = compilePCode("pushbyte 1\r\n" + "setlocal_1\r\n" + "jump label1\r\n" + "pushtrue\r\n" - + "jump label1\r\n" //remove this + + "jump label1\r\n" //remove this + "pop\r\n" + "label1:pushfalse\r\n"); b.getCode().replaceInstruction(getBaseAddr() + 4, new AVM2Instruction(0, new DeobfuscatePopIns(), new int[]{}), b);