--- old/test/langtools/tools/javac/processing/model/element/repeatingAnnotations/MixRepeatableAndOfficialContainerBasicTest.java 2019-06-03 13:23:02.164496559 -0700 +++ new/test/langtools/tools/javac/processing/model/element/repeatingAnnotations/MixRepeatableAndOfficialContainerBasicTest.java 2019-06-03 13:23:01.852340570 -0700 @@ -37,11 +37,11 @@ @ExpectedBase( value = Bar.class, - getAnnotation = "@Bar(value=0)", + getAnnotation = "@Bar(0)", getAnnotationsByType = { - "@Bar(value=0)", - "@Bar(value=1)", - "@Bar(value=2)" + "@Bar(0)", + "@Bar(1)", + "@Bar(2)" }, getAllAnnotationMirrors = { "@Bar(0)", @@ -57,19 +57,19 @@ }) @ExpectedContainer( value = BarContainer.class, - getAnnotation = "@BarContainer(value={@Bar(value=1), @Bar(value=2)})", - getAnnotationsByType = {"@BarContainer(value={@Bar(value=1), @Bar(value=2)})"}) + getAnnotation = "@BarContainer({@Bar(1), @Bar(2)})", + getAnnotationsByType = {"@BarContainer({@Bar(1), @Bar(2)})"}) @Bar(value = 0) @BarContainer(value = {@Bar(value = 1), @Bar(value = 2)}) class MixRepeatableAndOfficialContainerBasicTest { @ExpectedBase( value = Bar.class, - getAnnotation = "@Bar(value=0)", + getAnnotation = "@Bar(0)", getAnnotationsByType = { - "@Bar(value=0)", - "@Bar(value=1)", - "@Bar(value=2)" + "@Bar(0)", + "@Bar(1)", + "@Bar(2)" }, getAllAnnotationMirrors = { "@Bar(0)", @@ -85,19 +85,19 @@ }) @ExpectedContainer( value = BarContainer.class, - getAnnotation = "@BarContainer(value={@Bar(value=1), @Bar(value=2)})", - getAnnotationsByType = {"@BarContainer(value={@Bar(value=1), @Bar(value=2)})"}) + getAnnotation = "@BarContainer({@Bar(1), @Bar(2)})", + getAnnotationsByType = {"@BarContainer({@Bar(1), @Bar(2)})"}) @Bar(value = 0) @BarContainer(value = {@Bar(value = 1), @Bar(value = 2)}) int testField = 0; @ExpectedBase( value = Bar.class, - getAnnotation = "@Bar(value=0)", + getAnnotation = "@Bar(0)", getAnnotationsByType = { - "@Bar(value=0)", - "@Bar(value=1)", - "@Bar(value=2)" + "@Bar(0)", + "@Bar(1)", + "@Bar(2)" }, getAllAnnotationMirrors = { "@Bar(0)", @@ -113,8 +113,8 @@ }) @ExpectedContainer( value = BarContainer.class, - getAnnotation = "@BarContainer(value={@Bar(value=1), @Bar(value=2)})", - getAnnotationsByType = {"@BarContainer(value={@Bar(value=1), @Bar(value=2)})"}) + getAnnotation = "@BarContainer({@Bar(1), @Bar(2)})", + getAnnotationsByType = {"@BarContainer({@Bar(1), @Bar(2)})"}) @Bar(value = 0) @BarContainer(value = {@Bar(value = 1), @Bar(value = 2)}) void testMethod() {}