mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-27 04:19:03 +00:00
Merge branch '3.5.x'
Closes gh-46165
This commit is contained in:
+2
-2
@@ -38,7 +38,7 @@ class ContextPairsTests {
|
||||
ContextPairs contextPairs = new ContextPairs(false, null);
|
||||
Map<String, String> map = Map.of("spring", "boot");
|
||||
Map<String, Object> actual = apply(contextPairs.flat(".", (pairs) -> pairs.addMapEntries((item) -> map)));
|
||||
assertThat(actual.isEmpty());
|
||||
assertThat(actual).isEmpty();
|
||||
}
|
||||
|
||||
@Test
|
||||
@@ -96,7 +96,7 @@ class ContextPairsTests {
|
||||
ContextPairs contextPairs = new ContextPairs(false, null);
|
||||
Map<String, String> map = Map.of("spring", "boot");
|
||||
Map<String, Object> actual = apply(contextPairs.nested((pairs) -> pairs.addMapEntries((item) -> map)));
|
||||
assertThat(actual.isEmpty());
|
||||
assertThat(actual).isEmpty();
|
||||
}
|
||||
|
||||
@Test
|
||||
|
||||
Reference in New Issue
Block a user