correct net/test for ping packet

This commit is contained in:
subtly 2015-03-26 06:06:34 +01:00
parent 671254626a
commit 70184ece42

View File

@ -145,7 +145,7 @@ public:
bool success = false; bool success = false;
}; };
BOOST_AUTO_TEST_CASE(badPingNodePacket) BOOST_AUTO_TEST_CASE(v2PingNodePacket)
{ {
// test old versino of pingNode packet w/new // test old versino of pingNode packet w/new
RLPStream s; RLPStream s;
@ -153,7 +153,7 @@ BOOST_AUTO_TEST_CASE(badPingNodePacket)
PingNode p((bi::udp::endpoint())); PingNode p((bi::udp::endpoint()));
BOOST_REQUIRE_NO_THROW(p = PingNode::fromBytesConstRef(bi::udp::endpoint(), bytesConstRef(&s.out()))); BOOST_REQUIRE_NO_THROW(p = PingNode::fromBytesConstRef(bi::udp::endpoint(), bytesConstRef(&s.out())));
BOOST_REQUIRE(p.version == 0); BOOST_REQUIRE(p.version == 2);
} }
BOOST_AUTO_TEST_CASE(test_neighbours_packet) BOOST_AUTO_TEST_CASE(test_neighbours_packet)