aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Clement <andrew.clement@gmail.com>2013-04-01 14:45:10 -0700
committerAndy Clement <andrew.clement@gmail.com>2013-04-01 14:45:10 -0700
commit290b3be75f72e7373a17ad7f110a8d41d51192ba (patch)
treea7ce6c813a10c5b22b7cea5673f9eb37d217d1d1
parent99414d4203fc52b93dfa8ecb69211766609137ad (diff)
downloadaspectj-290b3be75f72e7373a17ad7f110a8d41d51192ba.tar.gz
aspectj-290b3be75f72e7373a17ad7f110a8d41d51192ba.zip
missing import
-rw-r--r--tests/src/org/aspectj/systemtest/AllTests17.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/src/org/aspectj/systemtest/AllTests17.java b/tests/src/org/aspectj/systemtest/AllTests17.java
index d3d0bafb3..4bde943ce 100644
--- a/tests/src/org/aspectj/systemtest/AllTests17.java
+++ b/tests/src/org/aspectj/systemtest/AllTests17.java
@@ -9,13 +9,14 @@ import junit.framework.TestSuite;
import org.aspectj.systemtest.ajc170.AllTestsAspectJ170;
import org.aspectj.systemtest.ajc171.AllTestsAspectJ171;
import org.aspectj.systemtest.ajc172.AllTestsAspectJ172;
+import org.aspectj.systemtest.ajc173.AllTestsAspectJ173;
public class AllTests17 {
public static Test suite() {
TestSuite suite = new TestSuite("AspectJ System Test Suite - 1.7");
// $JUnit-BEGIN$
- suite.addTest(AllTestsAspectJ173.suite());
+ suite.addTest(AllTestsAspectJ173.suite());
suite.addTest(AllTestsAspectJ172.suite());
suite.addTest(AllTestsAspectJ171.suite());
suite.addTest(AllTestsAspectJ170.suite());