mirror of
https://github.com/aria2/aria2.git
synced 2025-04-06 05:57:36 +03:00
Use raw pointers to PieceStorage, PeerStorage and DownloadContxt for BtMessages
This commit is contained in:
parent
09c597fbb8
commit
1a299c4d7c
21 changed files with 87 additions and 63 deletions
|
@ -70,11 +70,11 @@ void BtNotInterestedMessageTest::testDoReceivedAction() {
|
|||
peer->allocateSessionResource(1024, 1024*1024);
|
||||
peer->peerInterested(true);
|
||||
|
||||
std::shared_ptr<MockPeerStorage> peerStorage(new MockPeerStorage());
|
||||
auto peerStorage = make_unique<MockPeerStorage>();
|
||||
|
||||
BtNotInterestedMessage msg;
|
||||
msg.setPeer(peer);
|
||||
msg.setPeerStorage(peerStorage);
|
||||
msg.setPeerStorage(peerStorage.get());
|
||||
|
||||
CPPUNIT_ASSERT(peer->peerInterested());
|
||||
msg.doReceivedAction();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue