| 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, 'paymentManager', 'One-shot PaymentManage
r 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 | |
| 6 assert_inherits(registration.paymentManager, 'setManifest'); | |
| 7 assert_inherits(registration.paymentManager, 'getManifest'); | |
| 8 }, 'PaymentManager should be exposed and have the expected interface.'); | 5 }, 'PaymentManager should be exposed and have the expected interface.'); |
| OLD | NEW |