Browse Source

use boost_fail instead of warning

cl-refactor
CJentzsch 10 years ago
parent
commit
0ee53a1935
  1. 4
      test/trie.cpp

4
test/trie.cpp

@ -126,10 +126,10 @@ BOOST_AUTO_TEST_CASE(trie_tests_ordered)
keysToBeDeleted.push_back(values[0]); keysToBeDeleted.push_back(values[0]);
} }
else else
cwarn << "Bad type (expected string): " << s.type(); BOOST_FAIL("Bad type (expected string)");
} }
assert(values.size() == 2); BOOST_REQUIRE(values.size() == 2);
ss.push_back(make_pair(values[0], values[1])); ss.push_back(make_pair(values[0], values[1]));
if (!ss.back().first.find("0x")) if (!ss.back().first.find("0x"))
ss.back().first = asString(fromHex(ss.back().first.substr(2))); ss.back().first = asString(fromHex(ss.back().first.substr(2)));

Loading…
Cancel
Save