| Index: third_party/WebKit/Source/modules/payments/PaymentsValidatorsTest.cpp
|
| diff --git a/third_party/WebKit/Source/modules/payments/PaymentsValidatorsTest.cpp b/third_party/WebKit/Source/modules/payments/PaymentsValidatorsTest.cpp
|
| index 6c12d087dc607ecabe67921612b90dcf6a1d26b0..fcdf7846a55607378bcb591b81b4e01f80cd215f 100644
|
| --- a/third_party/WebKit/Source/modules/payments/PaymentsValidatorsTest.cpp
|
| +++ b/third_party/WebKit/Source/modules/payments/PaymentsValidatorsTest.cpp
|
| @@ -103,8 +103,9 @@ class PaymentsAmountValidatorTest : public testing::TestWithParam<TestCase> {};
|
|
|
| TEST_P(PaymentsAmountValidatorTest, IsValidAmountFormat) {
|
| String errorMessage;
|
| - EXPECT_EQ(GetParam().expectedValid, PaymentsValidators::isValidAmountFormat(
|
| - GetParam().input, &errorMessage))
|
| + EXPECT_EQ(
|
| + GetParam().expectedValid,
|
| + PaymentsValidators::isValidAmountFormat(GetParam().input, &errorMessage))
|
| << errorMessage;
|
| EXPECT_EQ(GetParam().expectedValid, errorMessage.isEmpty()) << errorMessage;
|
|
|
|
|