mirror of
https://github.com/google/nomulus.git
synced 2025-07-05 02:33:22 +02:00
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:
parent
48de5d8375
commit
e89cc4406a
1 changed files with 1 additions and 1 deletions
|
@ -71,7 +71,7 @@ public class ContactCommandTest {
|
||||||
EppLoader eppLoader = new EppLoader(this, "contact_update.xml");
|
EppLoader eppLoader = new EppLoader(this, "contact_update.xml");
|
||||||
Update command =
|
Update command =
|
||||||
(Update)
|
(Update)
|
||||||
((ResourceCommandWrapper) (eppLoader.getEpp().getCommandWrapper().getCommand()))
|
((ResourceCommandWrapper) eppLoader.getEpp().getCommandWrapper().getCommand())
|
||||||
.getResourceCommand();
|
.getResourceCommand();
|
||||||
Change change = command.getInnerChange();
|
Change change = command.getInnerChange();
|
||||||
assertThat(change.getInternationalizedPostalInfo().getAddress())
|
assertThat(change.getInternationalizedPostalInfo().getAddress())
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue