-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove deprecation warnings from generated assertions #143
Comments
Fair point, keen to contribute it @ebramirez? |
Sure! Here you have it: #144 @joel-costigliola By the way, to run the tests I had to add the |
This project was developed with the JDK 8 which provides it but I guess you are using JDK 11 (or even 14!) |
You absolutely right, I completely forgot about that change. |
Just wondering, is there a specific reason why this change can't be release yet? |
The assertions generated uses
org.assertj.core.util.Objects.areEqual
andorg.assertj.core.util.Objects.areEqualArrays
which are deprecated and show in the applications warning logs.Should use the suggested methods instead.
The text was updated successfully, but these errors were encountered: