diff options
author | wisberg <wisberg> | 2003-10-31 19:27:44 +0000 |
---|---|---|
committer | wisberg <wisberg> | 2003-10-31 19:27:44 +0000 |
commit | 458b26fe1241d3457ff8161ac8d18daa700a6cb0 (patch) | |
tree | c7641715c3b76fcd98798afd93d2473ddcc38955 /asm | |
parent | 0871a66c915e4db43e3d736899c60779a63fd4b4 (diff) | |
download | aspectj-458b26fe1241d3457ff8161ac8d18daa700a6cb0.tar.gz aspectj-458b26fe1241d3457ff8161ac8d18daa700a6cb0.zip |
returning TestSuite rather than Test to permit all tests to run from Eclipse
Diffstat (limited to 'asm')
-rw-r--r-- | asm/testsrc/AsmModuleTests.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/asm/testsrc/AsmModuleTests.java b/asm/testsrc/AsmModuleTests.java index e690cb536..c20ccc518 100644 --- a/asm/testsrc/AsmModuleTests.java +++ b/asm/testsrc/AsmModuleTests.java @@ -18,7 +18,7 @@ import junit.framework.*; public class AsmModuleTests extends TestCase { - public static Test suite() { + public static TestSuite suite() { TestSuite suite = new TestSuite(AsmModuleTests.class.getName()); suite.addTestSuite(AsmModuleTests.class); return suite; |