Commit 2509b98d authored by Michael Lee's avatar Michael Lee Committed by facebook-github-bot-4

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
parent c72f7f68
......@@ -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));
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment