Browse Source

correct net/test for ping packet

cl-refactor
subtly 10 years ago
parent
commit
58cb54bd49
  1. 4
      test/net.cpp

4
test/net.cpp

@ -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)

Loading…
Cancel
Save