Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/payments/payment-request-interface.html |
| diff --git a/third_party/WebKit/LayoutTests/payments/payment-request-interface.html b/third_party/WebKit/LayoutTests/payments/payment-request-interface.html |
| index c86077723b2b9a665513c21c57e1cf35f6b7a2bf..0dd67b634b6106e93361e5f9cc8fbeabae79b4fb 100644 |
| --- a/third_party/WebKit/LayoutTests/payments/payment-request-interface.html |
| +++ b/third_party/WebKit/LayoutTests/payments/payment-request-interface.html |
| @@ -124,7 +124,7 @@ generate_tests(assert_throws, [ |
| ['PaymentRequest constructor should throw for null required parameter.', null, function() { |
| new PaymentRequest(null, null) |
| }], |
| - ['Empty list of supported payment method identifiers should throw.', null, function() { |
| + ['Empty list of supported payment method identifiers should throw TypeError.', {name: 'TypeError'}, function() { |
|
Marijn Kruisselbrink
2016/05/31 22:11:24
I believe it's slightly more common to write asser
please use gerrit instead
2016/05/31 23:20:32
Done.
|
| new PaymentRequest([], buildDetails()) |
| }], |
| ['Keys in payment method specific data object should match accepted method identifiers.', null, function() { |