mirror of
https://github.com/mfontanini/libtins
synced 2026-01-25 11:41:35 +01:00
Added small_uint class.
This commit is contained in:
@@ -90,7 +90,7 @@ TEST_F(Dot11AckTest, ClonePDU) {
|
||||
TEST_F(Dot11AckTest, FromBytes) {
|
||||
std::auto_ptr<PDU> dot11(Dot11::from_bytes(expected_packet, sizeof(expected_packet)));
|
||||
ASSERT_TRUE(dot11.get());
|
||||
const Dot11Ack *inner = dot11->find_inner_pdu<Dot11Ack>();
|
||||
const Dot11Ack *inner = dot11->find_pdu<Dot11Ack>();
|
||||
ASSERT_TRUE(inner);
|
||||
test_equals_expected(*inner);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user