mirror of
https://github.com/mfontanini/libtins
synced 2026-01-29 21:14:28 +01:00
Removed PDU::clone_packet and renamed PDU::clone_pdu to PDU::clone.
This commit is contained in:
@@ -71,7 +71,7 @@ TEST_F(Dot11DeauthenticationTest, ReasonCode) {
|
||||
|
||||
TEST_F(Dot11DeauthenticationTest, ClonePDU) {
|
||||
Dot11Deauthentication dot1(expected_packet, sizeof(expected_packet));
|
||||
std::auto_ptr<Dot11Deauthentication> dot2(dot1.clone_pdu());
|
||||
std::auto_ptr<Dot11Deauthentication> dot2(dot1.clone());
|
||||
test_equals(dot1, *dot2);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user