@@ -73,7 +73,7 @@ void namedSingleSecretFails(CapturedOutput output) {
7373
7474 mockServer .expect ().withPath (path ).andReturn (500 , "Internal Server Error" ).once ();
7575
76- SecretsConfigProperties secretsConfigProperties = new SecretsConfigProperties (true , Map .of (), List . of (),
76+ SecretsConfigProperties secretsConfigProperties = new SecretsConfigProperties (true , Map .of (),
7777 List .of (), true , name , namespace , false , true , false , RetryProperties .DEFAULT );
7878
7979 Fabric8SecretsPropertySourceLocator locator = new Fabric8SecretsPropertySourceLocator (mockClient ,
@@ -112,7 +112,7 @@ void namedTwoSecretsOneFails() {
112112 Source sourceOne = new Source (secretNameOne , namespace , Map .of (), null , null , null );
113113 Source sourceTwo = new Source (secretNameTwo , namespace , Map .of (), null , null , null );
114114
115- SecretsConfigProperties secretsConfigProperties = new SecretsConfigProperties (true , Map .of (), List . of (),
115+ SecretsConfigProperties secretsConfigProperties = new SecretsConfigProperties (true , Map .of (),
116116 List .of (sourceOne , sourceTwo ), true , null , namespace , false , true , false , RetryProperties .DEFAULT );
117117
118118 Fabric8SecretsPropertySourceLocator locator = new Fabric8SecretsPropertySourceLocator (mockClient ,
@@ -146,7 +146,7 @@ void namedTwoSecretsBothFail() {
146146 Source sourceOne = new Source (secretNameOne , namespace , Map .of (), null , null , null );
147147 Source sourceTwo = new Source (secretNameTwo , namespace , Map .of (), null , null , null );
148148
149- SecretsConfigProperties secretsConfigProperties = new SecretsConfigProperties (true , Map .of (), List . of (),
149+ SecretsConfigProperties secretsConfigProperties = new SecretsConfigProperties (true , Map .of (),
150150 List .of (sourceOne , sourceTwo ), true , null , namespace , false , true , false , RetryProperties .DEFAULT );
151151
152152 Fabric8SecretsPropertySourceLocator locator = new Fabric8SecretsPropertySourceLocator (mockClient ,
@@ -178,7 +178,7 @@ void labeledSingleSecretFails(CapturedOutput output) {
178178
179179 Source secretSource = new Source (null , namespace , labels , null , null , null );
180180
181- SecretsConfigProperties secretsConfigProperties = new SecretsConfigProperties (true , labels , List . of (),
181+ SecretsConfigProperties secretsConfigProperties = new SecretsConfigProperties (true , labels ,
182182 List .of (secretSource ), true , null , namespace , false , true , false , RetryProperties .DEFAULT );
183183
184184 Fabric8SecretsPropertySourceLocator locator = new Fabric8SecretsPropertySourceLocator (mockClient ,
@@ -224,7 +224,7 @@ void labeledTwoSecretsOneFails(CapturedOutput output) {
224224 Source sourceTwo = new Source (null , namespace , secretTwoLabels , null , null , null );
225225
226226 SecretsConfigProperties secretsConfigProperties = new SecretsConfigProperties (true ,
227- Map .of ("one" , "1" , "two" , "2" ), List .of (), List . of ( sourceOne , sourceTwo ), true , null , namespace , false ,
227+ Map .of ("one" , "1" , "two" , "2" ), List .of (sourceOne , sourceTwo ), true , null , namespace , false ,
228228 true , false , RetryProperties .DEFAULT );
229229
230230 Fabric8SecretsPropertySourceLocator locator = new Fabric8SecretsPropertySourceLocator (mockClient ,
@@ -264,7 +264,7 @@ void labeledTwoConfigMapsBothFail(CapturedOutput output) {
264264 Source sourceTwo = new Source (null , namespace , secretTwoLabels , null , null , null );
265265
266266 SecretsConfigProperties secretsConfigProperties = new SecretsConfigProperties (true ,
267- Map .of ("one" , "1" , "two" , "2" ), List .of (), List . of ( sourceOne , sourceTwo ), true , null , namespace , false ,
267+ Map .of ("one" , "1" , "two" , "2" ), List .of (sourceOne , sourceTwo ), true , null , namespace , false ,
268268 true , false , RetryProperties .DEFAULT );
269269
270270 Fabric8SecretsPropertySourceLocator locator = new Fabric8SecretsPropertySourceLocator (mockClient ,
0 commit comments