summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrewCEmil <andrew.emil@10gen.com>2013-05-29 13:35:31 -0700
committerAndrewCEmil <andrew.emil@10gen.com>2013-05-29 13:35:31 -0700
commit913fb476f8691b52c93b3f67e66b598fa02d927b (patch)
tree1bf47ed1041e68d2be5176b4f663177f9d3d67d5 /src
parent34ee0f47bee10c3e2bddbd8c1c733de5b6b780bc (diff)
downloadmongo-913fb476f8691b52c93b3f67e66b598fa02d927b.tar.gz
SERVER-7324 removed too-large number from previous commit
Diffstat (limited to 'src')
-rw-r--r--src/mongo/util/stringutils_test.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mongo/util/stringutils_test.cpp b/src/mongo/util/stringutils_test.cpp
index c7fb0796798..10f6f7491b5 100644
--- a/src/mongo/util/stringutils_test.cpp
+++ b/src/mongo/util/stringutils_test.cpp
@@ -178,7 +178,6 @@ namespace mongo {
ASSERT_EQUALS(std::string("1337"), integerToHex(0x1337));
ASSERT_EQUALS(std::string("FFFFD499"), integerToHex(-11111));
ASSERT_EQUALS(std::string("F1FE60C4"), integerToHex(-234987324));
- ASSERT_EQUALS(std::string("C0DE4F00D"), integerToHex(0xc0de4f00d));
ASSERT_EQUALS(std::string("80000000"), integerToHex(std::numeric_limits<int>::min()));
ASSERT_EQUALS(std::string("7FFFFFFF"), integerToHex(std::numeric_limits<int>::max()));
ASSERT_EQUALS(std::string("7FFFFFFFFFFFFFFF"),