mirror of
https://github.com/google/nomulus
synced 2026-09-08 00:57:25 +00:00
Fix parameter problem in GenerateEscrowDepositCommand
It was setting the TLD and watermark date parameters as comma-separated lists. What it really needs to do is set the parameters multiple times, once for each value. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=156741051
This commit is contained in:
@@ -189,8 +189,10 @@ public class GenerateEscrowDepositCommandTest
|
||||
.url("/_dr/task/rdeStaging")
|
||||
.header("Host", "1.backend.test.localhost")
|
||||
.param("mode", "THIN")
|
||||
.param("watermark", "2017-01-01T00:00:00.000Z,2017-01-02T00:00:00.000Z")
|
||||
.param("tld", "tld,anothertld")
|
||||
.param("watermark", "2017-01-01T00:00:00.000Z")
|
||||
.param("watermark", "2017-01-02T00:00:00.000Z")
|
||||
.param("tld", "tld")
|
||||
.param("tld", "anothertld")
|
||||
.param("directory", "test")
|
||||
.param("manual", "true")
|
||||
.param("revision", "42"));
|
||||
|
||||
Reference in New Issue
Block a user