Skip to content

Commit

Permalink
fixes a bug of JvstTest5#testRedundantInsertAfter() for Issue #275
Browse files Browse the repository at this point in the history
  • Loading branch information
chibash committed Sep 22, 2019
1 parent 9108650 commit c78e17c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file modified javassist.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion src/test/javassist/JvstTest5.java
Expand Up @@ -556,6 +556,6 @@ public void testRedundantInsertAfter() throws Exception {
m2.insertAfter("{ $_ += 1; }", true, true);
cc.writeFile();
Object obj = make(cc.getName());
assertEquals(1, invoke(obj, "run"));
assertEquals(71 + 22, invoke(obj, "run"));
}
}

0 comments on commit c78e17c

Please sign in to comment.