@@ -142,7 +142,7 @@ public void testParameters() {
142142 "% @LogService(required = false) log\n " + //
143143 "% @int(label=\" Slider Value\" , softMin=5, softMax=15, " + //
144144 "stepSize=3, value=11, style=\" slider\" ) sliderValue\n " + //
145- "% @String(persist = false , family='Carnivora', " + //
145+ "% @String(persist = \" NO \" , family='Carnivora', " + //
146146 "choices={'quick brown fox', 'lazy dog'}) animal\n " + //
147147 "% @BOTH java.lang.StringBuilder buffer" ;
148148
@@ -165,7 +165,7 @@ public void testParameters() {
165165 final List <String > animalChoices = //
166166 Arrays .asList ("quick brown fox" , "lazy dog" );
167167 assertItem ("animal" , String .class , null , ItemIO .INPUT , true ,
168- ItemPersistence .DEFAULT , null , null , null , null , null , null , null , null ,
168+ ItemPersistence .NO , null , null , null , null , null , null , null , null ,
169169 animalChoices , animal );
170170 assertEquals (animal .get ("family" ), "Carnivora" ); // test custom attribute
171171
0 commit comments