From 2509b98d2c32f9a198ae3bb521dd59813521a6b7 Mon Sep 17 00:00:00 2001 From: Michael Lee Date: Wed, 10 Feb 2016 20:04:28 -0800 Subject: [PATCH] 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 --- folly/test/StringTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)); -- 2.34.1