From e51cf3e9c765d0109c20b1f844bf9e654df6c3ca Mon Sep 17 00:00:00 2001 From: guyben Date: Tue, 13 Nov 2018 18:34:20 -0800 Subject: [PATCH] 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 --- java/google/registry/tools/SetupOteCommand.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/google/registry/tools/SetupOteCommand.java b/java/google/registry/tools/SetupOteCommand.java index 404ef1e88..8764103bb 100644 --- a/java/google/registry/tools/SetupOteCommand.java +++ b/java/google/registry/tools/SetupOteCommand.java @@ -209,7 +209,7 @@ final class SetupOteCommand extends ConfirmingCommand implements CommandWithRemo command.ipWhitelist = ipWhitelist; command.street = ImmutableList.of("e-street"); command.city = "Neverland"; - command.state = "ofmind"; + command.state = "NY"; command.countryCode = "US"; command.zip = "55555"; command.email = Optional.of("foo@neverland.com");