Merge branch '3.5.x'

Closes gh-46165
This commit is contained in:
Stéphane Nicoll 2025-06-23 10:17:00 +02:00
commit a08e40d8d8
1 changed files with 2 additions and 2 deletions

View File

@ -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