Merge branch '6.2.x'

This commit is contained in:
Sébastien Deleuze
2025-09-09 11:28:09 +02:00
2 changed files with 8 additions and 2 deletions
@@ -58,7 +58,7 @@ public abstract class AbstractJsonPathAssertions<B> {
/**
* Applies {@link JsonPathExpectationsHelper#assertValue(String, Object)}.
*/
public B isEqualTo(Object expectedValue) {
public B isEqualTo(@Nullable Object expectedValue) {
this.pathHelper.assertValue(this.content, expectedValue);
return this.bodySpec;
}