Index: chrome/test/data/android/payments/contact_details_and_free_shipping.js |
diff --git a/chrome/test/data/android/payments/contact_details_and_free_shipping.js b/chrome/test/data/android/payments/contact_details_and_free_shipping.js |
index c5fc1bee96f69b26e599a4fc472f878196dbb366..ea336fc5e457bbf221edcba393b3af79a98d629f 100644 |
--- a/chrome/test/data/android/payments/contact_details_and_free_shipping.js |
+++ b/chrome/test/data/android/payments/contact_details_and_free_shipping.js |
@@ -23,15 +23,15 @@ function buy() { // eslint-disable-line no-unused-vars |
selected: true |
}] |
}, |
- {requestPayerEmail: true, requestPayerPhone: true, |
- requestShipping: true}); |
+ {requestPayerName: true, requestPayerEmail: true, |
+ requestPayerPhone: true, requestShipping: true}); |
request.show() |
.then(function(resp) { |
resp.complete('success') |
.then(function() { |
print( |
- resp.payerEmail + '<br>' + resp.payerPhone + '<br>' + |
- resp.shippingOption + '<br>' + |
+ resp.payerName + '<br>' + resp.payerEmail + '<br>' + |
+ resp.payerPhone + '<br>' + resp.shippingOption + '<br>' + |
JSON.stringify( |
toDictionary(resp.shippingAddress), undefined, 2) + |
'<br>' + resp.methodName + '<br>' + |