Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public JsonContentAssert isEqualTo(Object expected) {
if (expected instanceof Resource) {
return isEqualToJson((Resource) expected);
}
failWithMessage("Unsupport type for JSON assert {}", expected.getClass());
failWithMessage("Unsupported type for JSON assert {}", expected.getClass());
return null;
}

Expand Down Expand Up @@ -434,7 +434,7 @@ public JsonContentAssert isNotEqualTo(Object expected) {
if (expected instanceof Resource) {
return isNotEqualToJson((Resource) expected);
}
failWithMessage("Unsupported type for JSON assert {]", expected.getClass());
failWithMessage("Unsupported type for JSON assert {}", expected.getClass());
return null;
}

Expand Down