| Index: components/payments/payments_validators_test.cc
|
| diff --git a/components/payments/payments_validators_test.cc b/components/payments/payments_validators_test.cc
|
| index bf7fcc5a8dc66c044d80616d5ec06b227f96fb13..16fedd0e8118ddb1df82a7aa6e8ebcee05378c48 100644
|
| --- a/components/payments/payments_validators_test.cc
|
| +++ b/components/payments/payments_validators_test.cc
|
| @@ -7,7 +7,7 @@
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| #include <ostream> // NOLINT
|
|
|
| -namespace blink {
|
| +namespace payments {
|
| namespace {
|
|
|
| struct CurrencyCodeTestCase {
|
| @@ -244,7 +244,8 @@ class PaymentsShippingAddressValidatorTest
|
| : public testing::TestWithParam<ShippingAddressTestCase> {};
|
|
|
| TEST_P(PaymentsShippingAddressValidatorTest, IsValidShippingAddress) {
|
| - blink::mojom::PaymentAddressPtr address = blink::mojom::PaymentAddress::New();
|
| + payments::mojom::PaymentAddressPtr address =
|
| + payments::mojom::PaymentAddress::New();
|
| address->country = GetParam().countryCode;
|
| address->language_code = GetParam().languageCode;
|
| address->script_code = GetParam().scriptCode;
|
| @@ -276,4 +277,4 @@ INSTANTIATE_TEST_CASE_P(
|
| ShippingAddressTestCase("US", "", "Latn", false)));
|
|
|
| } // namespace
|
| -} // namespace blink
|
| +} // namespace payments
|
|
|