Browse Source

fixes a bug of JvstTest5#testRedundantInsertAfter() for Issue #275

tags/rel_3_26_0_ga
chibash 4 years ago
parent
commit
c78e17c67f
2 changed files with 1 additions and 1 deletions
  1. BIN
      javassist.jar
  2. 1
    1
      src/test/javassist/JvstTest5.java

BIN
javassist.jar View File


+ 1
- 1
src/test/javassist/JvstTest5.java View File

@@ -556,6 +556,6 @@ public class JvstTest5 extends JvstTestRoot {
m2.insertAfter("{ $_ += 1; }", true, true);
cc.writeFile();
Object obj = make(cc.getName());
assertEquals(1, invoke(obj, "run"));
assertEquals(71 + 22, invoke(obj, "run"));
}
}

Loading…
Cancel
Save