test-cli: minor fix

Signed-off-by: Ahmet Alp Balkan <ahmetb@google.com>
This commit is contained in:
Ahmet Alp Balkan 2018-06-20 16:56:39 -07:00
parent 626342e9bb
commit dfb0ae215f
1 changed files with 2 additions and 1 deletions

View File

@ -266,7 +266,8 @@ func testCurrencyService() error {
if err != nil {
return err
}
log.Printf("--> %v", listResp)
log.Printf("--> returned %d currency codes", len(listResp.GetCurrencyCodes()))
log.Printf("--> %v", listResp.GetCurrencyCodes())
convertResp, err := cl.Convert(context.TODO(), &pb.ConversionRequest{
From: &pb.Money{
CurrencyCode: "CAD",