parent
5774ea3f0c
commit
8a04547454
|
|
@ -96,7 +96,7 @@ class ConfigDataTests {
|
|||
MapPropertySource source2 = new MapPropertySource("test", Collections.emptyMap());
|
||||
Options options1 = Options.of(Option.IGNORE_IMPORTS);
|
||||
Options options2 = Options.of(Option.IGNORE_PROFILES);
|
||||
PropertySourceOptions propertySourceOptions = (source) -> source == source1 ? options1 : options2;
|
||||
PropertySourceOptions propertySourceOptions = (source) -> (source != source1) ? options2 : options1;
|
||||
ConfigData configData = new ConfigData(Arrays.asList(source1, source2), propertySourceOptions);
|
||||
assertThat(configData.getOptions(source1)).isEqualTo(options1);
|
||||
assertThat(configData.getOptions(source2)).isEqualTo(options2);
|
||||
|
|
|
|||
Loading…
Reference in New Issue