Change OTE "fake" address state to a valid value

Currently, OTE creates an invalid address "state", which doesn't pass validation when trying to update it on the console.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=221372006
This commit is contained in:
guyben 2018-11-13 18:34:20 -08:00 committed by jianglai
parent 75add42a1b
commit e51cf3e9c7

View file

@ -209,7 +209,7 @@ final class SetupOteCommand extends ConfirmingCommand implements CommandWithRemo
command.ipWhitelist = ipWhitelist; command.ipWhitelist = ipWhitelist;
command.street = ImmutableList.of("e-street"); command.street = ImmutableList.of("e-street");
command.city = "Neverland"; command.city = "Neverland";
command.state = "ofmind"; command.state = "NY";
command.countryCode = "US"; command.countryCode = "US";
command.zip = "55555"; command.zip = "55555";
command.email = Optional.of("foo@neverland.com"); command.email = Optional.of("foo@neverland.com");