aboutsummaryrefslogtreecommitdiff
path: root/src/common/simple_string_dictionary_unittest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/simple_string_dictionary_unittest.cc')
-rw-r--r--src/common/simple_string_dictionary_unittest.cc12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/common/simple_string_dictionary_unittest.cc b/src/common/simple_string_dictionary_unittest.cc
index 5fbc481c..34f4b9ef 100644
--- a/src/common/simple_string_dictionary_unittest.cc
+++ b/src/common/simple_string_dictionary_unittest.cc
@@ -290,18 +290,6 @@ TEST(NonAllocatingMapTest, OutOfSpace) {
#ifndef NDEBUG
-TEST(NonAllocatingMapTest, KeyTooLong) {
- NonAllocatingMap<3, 10, 12> map;
- map.SetKeyValue("ab", "cdefghi");
- ASSERT_DEATH(map.SetKeyValue("abcdef", "1"), "");
-}
-
-TEST(NonAllocatingMapTest, ValueTooLong) {
- NonAllocatingMap<9, 3, 8> map;
- map.SetKeyValue("abcd", "ab");
- ASSERT_DEATH(map.SetKeyValue("abcd", "abc"), "");
-}
-
TEST(NonAllocatingMapTest, NullKey) {
NonAllocatingMap<4, 6, 6> map;
ASSERT_DEATH(map.SetKeyValue(NULL, "hello"), "");