Change nomulus registrar --drive_id parameter to --drive_folder_id

This makes it consistent with the parameter of the same name on the tld commands.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=234148699
This commit is contained in:
mcilwain 2019-02-15 08:30:12 -08:00 committed by jianglai
parent b582614d7a
commit 067756722d
3 changed files with 5 additions and 5 deletions

View file

@ -240,7 +240,7 @@ abstract class CreateOrUpdateRegistrarCommand extends MutatingCommand {
@Nullable @Nullable
@Parameter( @Parameter(
names = "--drive_id", names = "--drive_folder_id",
description = "Id of this registrar's folder in Drive", description = "Id of this registrar's folder in Drive",
converter = OptionalStringParameter.class, converter = OptionalStringParameter.class,
validateWith = OptionalStringParameter.class) validateWith = OptionalStringParameter.class)

View file

@ -620,7 +620,7 @@ public class CreateRegistrarCommandTest extends CommandTestCase<CreateRegistrarC
"--fax=null", "--fax=null",
"--email=null", "--email=null",
"--url=null", "--url=null",
"--drive_id=null", "--drive_folder_id=null",
"--street=\"123 Fake St\"", "--street=\"123 Fake St\"",
"--city Fakington", "--city Fakington",
"--state MA", "--state MA",
@ -653,7 +653,7 @@ public class CreateRegistrarCommandTest extends CommandTestCase<CreateRegistrarC
"--fax=", "--fax=",
"--email=", "--email=",
"--url=", "--url=",
"--drive_id=", "--drive_folder_id=",
"--icann_referral_email=foo@bar.test", "--icann_referral_email=foo@bar.test",
"--street=\"123 Fake St\"", "--street=\"123 Fake St\"",
"--city Fakington", "--city Fakington",

View file

@ -367,7 +367,7 @@ public class UpdateRegistrarCommandTest extends CommandTestCase<UpdateRegistrarC
"--fax=null", "--fax=null",
"--email=null", "--email=null",
"--url=null", "--url=null",
"--drive_id=null", "--drive_folder_id=null",
"--force", "--force",
"NewRegistrar"); "NewRegistrar");
@ -411,7 +411,7 @@ public class UpdateRegistrarCommandTest extends CommandTestCase<UpdateRegistrarC
"--fax=", "--fax=",
"--email=", "--email=",
"--url=", "--url=",
"--drive_id=", "--drive_folder_id=",
"--force", "--force",
"NewRegistrar"); "NewRegistrar");