Skip to content

Commit 372b730

Browse files
committed
Remove deprecated method calls in assertions
1 parent 07140ed commit 372b730

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

etc/assertj-templates/has_assertion_template_for_real_number_wrapper.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
// null safe check
1616
${propertyType} actual${Property} = actual.get${Property}();
17-
if (!Objects.deepEquals(actual${Property}, ${property_safe})) {
17+
if (!java.util.Objects.deepEquals(actual${Property}, ${property_safe})) {
1818
failWithMessage(assertjErrorMessage, actual, ${property_safe}, actual${Property});
1919
}
2020

0 commit comments

Comments
 (0)