aboutsummaryrefslogtreecommitdiffstats
path: root/testing-util/testsrc/TestingUtilModuleTests.java
diff options
context:
space:
mode:
Diffstat (limited to 'testing-util/testsrc/TestingUtilModuleTests.java')
-rw-r--r--testing-util/testsrc/TestingUtilModuleTests.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/testing-util/testsrc/TestingUtilModuleTests.java b/testing-util/testsrc/TestingUtilModuleTests.java
index 32084c1a2..a81847cb2 100644
--- a/testing-util/testsrc/TestingUtilModuleTests.java
+++ b/testing-util/testsrc/TestingUtilModuleTests.java
@@ -14,17 +14,16 @@
// default package
-import org.aspectj.testing.util.UtilTests;
-
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
+import org.aspectj.testingutil.UtilTests;
public class TestingUtilModuleTests extends TestCase {
public static Test suite() {
TestSuite suite = new TestSuite(TestingUtilModuleTests.class.getName());
- suite.addTest(UtilTests.suite());
+ suite.addTest(UtilTests.suite());
return suite;
}