diff options
author | Andy Clement <aclement@pivotal.io> | 2017-09-24 22:00:25 -0700 |
---|---|---|
committer | Andy Clement <aclement@pivotal.io> | 2017-09-24 22:00:25 -0700 |
commit | ab8339852515f04236d41b9af486ea9f0c50c6c7 (patch) | |
tree | ec08d02f6cfa6d4a81fef919a750cb19aa3f4ca4 /tests/java5 | |
parent | ad514d54b1014bbfa085096419080c9fc6e1642b (diff) | |
download | aspectj-ab8339852515f04236d41b9af486ea9f0c50c6c7.tar.gz aspectj-ab8339852515f04236d41b9af486ea9f0c50c6c7.zip |
Various changes to get tests passing on 1.8 and 1.9
Diffstat (limited to 'tests/java5')
-rw-r--r-- | tests/java5/annotations/itds/AtItd3.aj | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/java5/annotations/itds/AtItd3.aj b/tests/java5/annotations/itds/AtItd3.aj index c3412cf56..8af19ed71 100644 --- a/tests/java5/annotations/itds/AtItd3.aj +++ b/tests/java5/annotations/itds/AtItd3.aj @@ -24,6 +24,7 @@ public class AtItd3 { if (!aa.toString().equals("@Ann(id=goodbye, anInt=4)")) // < Java8 order if (!aa.toString().equals("@Ann(anInt=4, id=goodbye)")) // Java8 order + if (!aa.toString().equals("@Ann(anInt=4, id=\"goodbye\")")) // Java9 quotes strings throw new RuntimeException("Incorrect output, expected:"+ "@Ann(id=goodbye, anInt=4) but got "+aa.toString()); |