mirror of
https://github.com/google/nomulus
synced 2026-08-27 19:37:07 +00:00
Fix create_cdns_tld command (#2760)
The Cloud DNS rest api is now case-sensitive about enum names (must be lower case, counterintuitively).
This commit is contained in:
@@ -55,7 +55,7 @@ class CreateCdnsTldTest extends CommandTestCase<CreateCdnsTld> {
|
||||
.setDnsName(dnsName)
|
||||
.setDescription(description)
|
||||
.setName(name)
|
||||
.setDnssecConfig(new ManagedZoneDnsSecConfig().setState("ON").setNonExistence("NSEC"));
|
||||
.setDnssecConfig(new ManagedZoneDnsSecConfig().setState("on").setNonExistence("nsec"));
|
||||
}
|
||||
|
||||
@Test
|
||||
|
||||
Reference in New Issue
Block a user