mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-21 16:19:42 +00:00
Fix checkstyle violation
See gh-25766
This commit is contained in:
+1
-1
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user