mirror of
https://github.com/google/nomulus.git
synced 2025-05-14 16:37:13 +02: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:
parent
65aaeccfc6
commit
fb21946366
2 changed files with 10 additions and 5 deletions
|
@ -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"));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue