Merge branch '7.0.x'

This commit is contained in:
Sam Brannen
2026-09-14 15:02:41 +02:00
@@ -441,7 +441,7 @@ class AssertTests {
@Test @Test
void noNullElementsWithEmptyCollectionAndMessageSupplier() { void noNullElementsWithEmptyCollectionAndMessageSupplier() {
assertThatCode(() -> assertThatCode(() ->
Assert.noNullElements(emptyList(), "enigma")) Assert.noNullElements(emptyList(), () -> "enigma"))
.doesNotThrowAnyException(); .doesNotThrowAnyException();
} }