diff options
author | Tom Sepez <tsepez@chromium.org> | 2015-10-26 14:03:13 -0700 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2015-10-26 14:03:13 -0700 |
commit | bf551e3f70124ec9ccd5cf5bfeb8a562823db76e (patch) | |
tree | 4624dea7c532c7dfeeb2099ee72b6713aefdc5a7 /core | |
parent | a568ff2dddd3ef44f224d21b31afff8eb14b6d31 (diff) | |
download | pdfium-bf551e3f70124ec9ccd5cf5bfeb8a562823db76e.tar.xz |
Whitespace changes in fx_system_unittest.cpp to match XFA
TBR=thestig@chromium.org
Review URL: https://codereview.chromium.org/1418263003 .
Diffstat (limited to 'core')
-rw-r--r-- | core/src/fxcrt/fx_system_unittest.cpp | 17 |
1 files changed, 7 insertions, 10 deletions
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<int64_t>::min(), "-8000000000000000"); - Check64BitBase10Itoa( - std::numeric_limits<int64_t>::min(), "-9223372036854775808"); + Check64BitBase16Itoa(std::numeric_limits<int64_t>::min(), + "-8000000000000000"); + Check64BitBase10Itoa(std::numeric_limits<int64_t>::min(), + "-9223372036854775808"); Check64BitBase2Itoa( std::numeric_limits<int64_t>::min(), "-1000000000000000000000000000000000000000000000000000000000000000"); @@ -151,14 +150,12 @@ TEST(fxcrt, FXSYS_i64toa) { Check64BitBase10Itoa(42, "42"); Check64BitBase2Itoa(42, "101010"); - Check64BitBase16Itoa( - std::numeric_limits<int64_t>::max(), "7fffffffffffffff"); - Check64BitBase10Itoa( - std::numeric_limits<int64_t>::max(), "9223372036854775807"); + Check64BitBase16Itoa(std::numeric_limits<int64_t>::max(), "7fffffffffffffff"); + Check64BitBase10Itoa(std::numeric_limits<int64_t>::max(), + "9223372036854775807"); Check64BitBase2Itoa( std::numeric_limits<int64_t>::max(), "111111111111111111111111111111111111111111111111111111111111111"); } #endif // _FXM_PLATFORM_ != _FXM_PLATFORM_WINDOWS_ - |