summaryrefslogtreecommitdiff
path: root/src/mongo/unittest
diff options
context:
space:
mode:
authorA. Jesse Jiryu Davis <jesse@mongodb.com>2019-06-10 16:37:53 -0400
committerA. Jesse Jiryu Davis <jesse@mongodb.com>2019-06-11 09:24:52 -0400
commit209e140be9a3d7426c204dee45548d52384dfa3c (patch)
tree5cd1816863bc9c2d5ad14defa24c7bce0dec63f1 /src/mongo/unittest
parentdd1295d603e94cc8157238d41aaa909f45446526 (diff)
downloadmongo-209e140be9a3d7426c204dee45548d52384dfa3c.tar.gz
Revert "SERVER-4999 Normalize all hostnames to lowercase"
This reverts commit ad9267a722e21268d1005c1428ccad85d5a98946 (SERVER-41614).
Diffstat (limited to 'src/mongo/unittest')
-rw-r--r--src/mongo/unittest/unittest.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/mongo/unittest/unittest.h b/src/mongo/unittest/unittest.h
index f443857b0e3..7896f97dcc5 100644
--- a/src/mongo/unittest/unittest.h
+++ b/src/mongo/unittest/unittest.h
@@ -115,11 +115,6 @@
#define ASSERT_APPROX_EQUAL(a, b, ABSOLUTE_ERR) ASSERT_LTE(std::abs((a) - (b)), ABSOLUTE_ERR)
/**
- * ASCII case-insensitive comparison.
- */
-#define ASSERT_EQUALS_CI(a, b) ASSERT_EQUALS(str::toLower(a), str::toLower(b))
-
-/**
* Assert a function call returns its input unchanged.
*/
#define ASSERT_IDENTITY(INPUT, FUNCTION) \