mirror of
https://github.com/mfontanini/libtins
synced 2026-01-27 12:14:26 +01:00
Removed PDU::clone_packet and renamed PDU::clone_pdu to PDU::clone.
This commit is contained in:
@@ -78,7 +78,7 @@ TEST_F(Dot11BlockAckRequestTest, ClonePDU) {
|
||||
dot1.fragment_number(6);
|
||||
dot1.start_sequence(0x294);
|
||||
dot1.bar_control(0x92f);
|
||||
std::auto_ptr<Dot11BlockAckRequest> dot2(dot1.clone_pdu());
|
||||
std::auto_ptr<Dot11BlockAckRequest> dot2(dot1.clone());
|
||||
test_equals(dot1, *dot2);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user