From bf551e3f70124ec9ccd5cf5bfeb8a562823db76e Mon Sep 17 00:00:00 2001 From: Tom Sepez Date: Mon, 26 Oct 2015 14:03:13 -0700 Subject: Whitespace changes in fx_system_unittest.cpp to match XFA TBR=thestig@chromium.org Review URL: https://codereview.chromium.org/1418263003 . --- core/src/fxcrt/fx_system_unittest.cpp | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) (limited to 'core') diff --git a/core/src/fxcrt/fx_system_unittest.cpp b/core/src/fxcrt/fx_system_unittest.cpp index fec6063b0d..824ed5370c 100644 --- a/core/src/fxcrt/fx_system_unittest.cpp +++ b/core/src/fxcrt/fx_system_unittest.cpp @@ -129,12 +129,11 @@ TEST(fxcrt, FXSYS_i64toa_InvalidRadix) { EXPECT_EQ(std::string(""), buf); }; - TEST(fxcrt, FXSYS_i64toa) { - Check64BitBase16Itoa( - std::numeric_limits::min(), "-8000000000000000"); - Check64BitBase10Itoa( - std::numeric_limits::min(), "-9223372036854775808"); + Check64BitBase16Itoa(std::numeric_limits::min(), + "-8000000000000000"); + Check64BitBase10Itoa(std::numeric_limits::min(), + "-9223372036854775808"); Check64BitBase2Itoa( std::numeric_limits::min(), "-1000000000000000000000000000000000000000000000000000000000000000"); @@ -151,14 +150,12 @@ TEST(fxcrt, FXSYS_i64toa) { Check64BitBase10Itoa(42, "42"); Check64BitBase2Itoa(42, "101010"); - Check64BitBase16Itoa( - std::numeric_limits::max(), "7fffffffffffffff"); - Check64BitBase10Itoa( - std::numeric_limits::max(), "9223372036854775807"); + Check64BitBase16Itoa(std::numeric_limits::max(), "7fffffffffffffff"); + Check64BitBase10Itoa(std::numeric_limits::max(), + "9223372036854775807"); Check64BitBase2Itoa( std::numeric_limits::max(), "111111111111111111111111111111111111111111111111111111111111111"); } #endif // _FXM_PLATFORM_ != _FXM_PLATFORM_WINDOWS_ - -- cgit v1.2.3