diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/mongo/util/stringutils_test.cpp | 1 |
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"), |