Fix another "extra parens" warning (#938)

* Fix another "extra parens" warning

Same place as the last one, but I missed it :-(
This commit is contained in:
Michael Muller 2021-01-22 13:39:30 -05:00 committed by GitHub
parent 48de5d8375
commit e89cc4406a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -71,7 +71,7 @@ public class ContactCommandTest {
EppLoader eppLoader = new EppLoader(this, "contact_update.xml");
Update command =
(Update)
((ResourceCommandWrapper) (eppLoader.getEpp().getCommandWrapper().getCommand()))
((ResourceCommandWrapper) eppLoader.getEpp().getCommandWrapper().getCommand())
.getResourceCommand();
Change change = command.getInnerChange();
assertThat(change.getInternationalizedPostalInfo().getAddress())