diff options
author | aclement <aclement> | 2004-04-02 12:45:13 +0000 |
---|---|---|
committer | aclement <aclement> | 2004-04-02 12:45:13 +0000 |
commit | 0521e79aea0550b1357a7ccc6a5050f8ce27ce9b (patch) | |
tree | fd1c5bdfe7780257d007f7130fe9355352554372 /weaver/testsrc | |
parent | 33d8ee9eededcd1219a6cbd1d063af005d40a3f7 (diff) | |
download | aspectj-0521e79aea0550b1357a7ccc6a5050f8ce27ce9b.tar.gz aspectj-0521e79aea0550b1357a7ccc6a5050f8ce27ce9b.zip |
Fix for Bug 55341
error Type mismatch: cannot convert from java.lang.String to java.lang.String
Diffstat (limited to 'weaver/testsrc')
-rw-r--r-- | weaver/testsrc/org/aspectj/weaver/WeavingURLClassLoaderTest.java | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/weaver/testsrc/org/aspectj/weaver/WeavingURLClassLoaderTest.java b/weaver/testsrc/org/aspectj/weaver/WeavingURLClassLoaderTest.java index 41f9b56ab..d3f940e4d 100644 --- a/weaver/testsrc/org/aspectj/weaver/WeavingURLClassLoaderTest.java +++ b/weaver/testsrc/org/aspectj/weaver/WeavingURLClassLoaderTest.java @@ -140,9 +140,7 @@ public class WeavingURLClassLoaderTest extends TestCase { try { Class clazz = loader.loadClass("LTWHelloWorld"); - /* Uncomment when bug #55341 fixed */ -// invokeMain(clazz,new String[] { "LTWInterfaceITD", "LTWFieldITD", "LTWMethodITD" }); - invokeMain(clazz,new String[] { "LTWInterfaceITD", "LTWFieldITD" }); + invokeMain(clazz,new String[] { "LTWInterfaceITD", "LTWFieldITD", "LTWMethodITD" }); } catch (Exception ex) { fail(ex.toString()); @@ -177,9 +175,7 @@ public class WeavingURLClassLoaderTest extends TestCase { try { Class clazz = loader.loadClass("LTWHelloWorld"); - /* Uncomment when bug #55341 fixed */ -// invokeMain(clazz,new String[] { "LTWAspect", "LTWAroundClosure", "LTWPerthis", "LTWInterfaceITD", "LTWFieldITD", "LTWMethodITD", "LTWPerthis"}); - invokeMain(clazz,new String[] { "LTWAspect", "LTWAroundClosure", "LTWPerthis", "LTWInterfaceITD", "LTWFieldITD", "LTWPerthis"}); + invokeMain(clazz,new String[] { "LTWAspect", "LTWAroundClosure", "LTWPerthis", "LTWInterfaceITD", "LTWFieldITD", "LTWMethodITD", "LTWPerthis"}); } catch (Exception ex) { fail(ex.toString()); |