From: Michael Lee Date: Thu, 11 Feb 2016 04:04:28 +0000 (-0800) Subject: Fix typo in StringTest X-Git-Tag: deprecate-dynamic-initializer~78 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=2509b98d2c32f9a198ae3bb521dd59813521a6b7;p=folly.git Fix typo in StringTest Summary: It should be UL instead of ULL. Reviewed By: siyengar Differential Revision: D2926005 fb-gh-sync-id: d2387eb601c50d9820907c831277aa6f8e938cbb shipit-source-id: d2387eb601c50d9820907c831277aa6f8e938cbb --- diff --git a/folly/test/StringTest.cpp b/folly/test/StringTest.cpp index 4b6523e8..a776b88a 100644 --- a/folly/test/StringTest.cpp +++ b/folly/test/StringTest.cpp @@ -33,7 +33,7 @@ TEST(StringPrintf, BasicTest) { TEST(StringPrintf, NumericFormats) { EXPECT_EQ("12", stringPrintf("%d", 12)); - EXPECT_EQ("2000000000", stringPrintf("%ld", 2000000000ULL)); + EXPECT_EQ("2000000000", stringPrintf("%ld", 2000000000UL)); EXPECT_EQ("2000000000", stringPrintf("%ld", 2000000000L)); EXPECT_EQ("-2000000000", stringPrintf("%ld", -2000000000L)); EXPECT_EQ("5000000000", stringPrintf("%lld", 5000000000ULL));