mirror of
https://github.com/google/nomulus.git
synced 2025-04-30 12:07:51 +02:00
Remove some unnecessary parens (#929)
* Remove some unnecessary parens Remove extra parens that cause a compile warning. * Removed the correct paren this time.
This commit is contained in:
parent
b764c25a63
commit
c79dc4832c
1 changed files with 2 additions and 2 deletions
|
@ -71,8 +71,8 @@ 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())
|
||||||
.isEqualTo(
|
.isEqualTo(
|
||||||
|
|
Loading…
Add table
Reference in a new issue