Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9820)

Unified Diff: chrome/test/data/android/payments/payer_info_details_and_free_shipping.js

Issue 2393113003: test:
Patch Set: test: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/test/data/android/payments/payer_info_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/payer_info_details_and_free_shipping.js
similarity index 84%
rename from chrome/test/data/android/payments/contact_details_and_free_shipping.js
rename to chrome/test/data/android/payments/payer_info_details_and_free_shipping.js
index c5fc1bee96f69b26e599a4fc472f878196dbb366..b7259c30444db1959e926f5b59971b901fb194c1 100644
--- a/chrome/test/data/android/payments/contact_details_and_free_shipping.js
+++ b/chrome/test/data/android/payments/payer_info_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>' +

Powered by Google App Engine
This is Rietveld 408576698