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:
mountford 2017-05-22 08:42:17 -07:00 committed by Ben McIlwain
parent 65aaeccfc6
commit fb21946366
2 changed files with 10 additions and 5 deletions

View file

@ -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"));