summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2015-10-26 14:03:13 -0700
committerTom Sepez <tsepez@chromium.org>2015-10-26 14:03:13 -0700
commitbf551e3f70124ec9ccd5cf5bfeb8a562823db76e (patch)
tree4624dea7c532c7dfeeb2099ee72b6713aefdc5a7
parenta568ff2dddd3ef44f224d21b31afff8eb14b6d31 (diff)
downloadpdfium-bf551e3f70124ec9ccd5cf5bfeb8a562823db76e.tar.xz
Whitespace changes in fx_system_unittest.cpp to match XFA
TBR=thestig@chromium.org Review URL: https://codereview.chromium.org/1418263003 .
-rw-r--r--core/src/fxcrt/fx_system_unittest.cpp17
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_
-