Browse Source

JASSIST-127 and JBPAPP9257

git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@643 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
tags/rel_3_17_1_ga
chiba 11 years ago
parent
commit
cf8cbd9950
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/test/test/javassist/proxy/JBPAPP9257Test.java

+ 1
- 1
src/test/test/javassist/proxy/JBPAPP9257Test.java View File

@@ -29,7 +29,7 @@ public class JBPAPP9257Test extends TestCase {
};
Foo foo = (Foo) c.newInstance();
try {
((ProxyObject)foo).setHandler(mi);
((Proxy)foo).setHandler(mi);
fail("foo is a ProxyObject!");
} catch (ClassCastException e) {}
((Proxy)foo).setHandler(mi);

Loading…
Cancel
Save