diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2019-07-24 13:57:06 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2019-07-24 13:57:06 -0500 |
| commit | e3de4aa68bedf7a7adfaf53cc2c132a74dc7fb08 (patch) | |
| tree | 134d499069659c6bbbfd372d32d45a93ea718184 /tests/unit_tests | |
| parent | 4c4586ca7b9ff5fd7668687a0d8b2bdc8a05f92f (diff) | |
| parent | 1a66a86f94380e24e3aadba649e47708cfe401d0 (diff) | |
| download | monzero-core-e3de4aa68bedf7a7adfaf53cc2c132a74dc7fb08.tar.gz monzero-core-e3de4aa68bedf7a7adfaf53cc2c132a74dc7fb08.tar.xz monzero-core-e3de4aa68bedf7a7adfaf53cc2c132a74dc7fb08.zip | |
Merge pull request #5502
25a7cfd add a few checks where it seems appropriate (moneromooo-monero)
1a66a86 remove unused code (moneromooo-monero)
Diffstat (limited to 'tests/unit_tests')
| -rw-r--r-- | tests/unit_tests/test_protocol_pack.cpp | 1 | ||||
| -rw-r--r-- | tests/unit_tests/varint.cpp | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit_tests/test_protocol_pack.cpp b/tests/unit_tests/test_protocol_pack.cpp index 7329c0d23..0ae2e9c68 100644 --- a/tests/unit_tests/test_protocol_pack.cpp +++ b/tests/unit_tests/test_protocol_pack.cpp @@ -48,6 +48,7 @@ TEST(protocol_pack, protocol_pack_command) cryptonote::NOTIFY_RESPONSE_CHAIN_ENTRY::request r2; res = epee::serialization::load_t_from_binary(r2, buff); + ASSERT_TRUE(res); ASSERT_TRUE(r.m_block_ids.size() == i); ASSERT_TRUE(r.start_height == 1); ASSERT_TRUE(r.total_height == 3); diff --git a/tests/unit_tests/varint.cpp b/tests/unit_tests/varint.cpp index ca0900682..72691d722 100644 --- a/tests/unit_tests/varint.cpp +++ b/tests/unit_tests/varint.cpp @@ -56,7 +56,6 @@ TEST(varint, equal) ASSERT_TRUE (bytes > 0 && bytes <= sizeof(buf)); uint64_t idx2; - bufptr = buf; std::string s(buf, bytes); int read = tools::read_varint(s.begin(), s.end(), idx2); ASSERT_EQ (read, bytes); |
