| OLD | NEW |
| 1 importScripts('/resources/testharness.js'); | 1 importScripts('/resources/testharness.js'); |
| 2 | 2 |
| 3 test(function() { | 3 test(function() { |
| 4 assert_idl_attribute(registration, 'paymentAppManager', 'One-shot PaymentApp
Manager needs to be exposed on the registration.'); | 4 assert_idl_attribute(registration, 'paymentManager', 'One-shot PaymentManage
r needs to be exposed on the registration.'); |
| 5 | 5 |
| 6 assert_inherits(registration.paymentAppManager, 'setManifest'); | 6 assert_inherits(registration.paymentManager, 'setManifest'); |
| 7 assert_inherits(registration.paymentAppManager, 'getManifest'); | 7 assert_inherits(registration.paymentManager, 'getManifest'); |
| 8 }, 'PaymentAppManager should be exposed and have the expected interface.'); | 8 }, 'PaymentManager should be exposed and have the expected interface.'); |
| OLD | NEW |