Fix test, fail in dup2_x1

This commit is contained in:
Adam
2015-11-02 17:56:25 -05:00
parent 483bdbc165
commit 8df59fb261
2 changed files with 3 additions and 3 deletions

View File

@@ -138,7 +138,7 @@ public class Dup2_X1 extends Instruction implements DupInstruction
else
throw new IllegalStateException();
return ctx.getPushes().get(orig);
return ctx.getPops().get(orig);
}
@Override

View File

@@ -609,7 +609,7 @@ public class MultiplicationDeobfuscatorTest
d.run(group);
Assert.assertEquals(1L, constant1.getConstantAsLong());
// Assert.assertEquals(1L, constant2.getConstantAsLong());
// Assert.assertEquals(1L, constant3.getConstantAsLong());
Assert.assertEquals(1L, constant2.getConstantAsLong());
Assert.assertEquals(1L, constant3.getConstantAsLong());
}
}