@@ -573,7 +573,8 @@ func testBasicSendPassiveAsset(t *harnessTest) {
573573
574574// testReattemptFailedSendHashmailCourier tests that a failed attempt at
575575// sending an asset proof will be reattempted by the tapd node. This test
576- // targets the hashmail courier.
576+ // targets the hashmail courier. The proof courier is specified in the test
577+ // list entry.
577578func testReattemptFailedSendHashmailCourier (t * harnessTest ) {
578579 var (
579580 ctxb = context .Background ()
@@ -654,11 +655,6 @@ func testReattemptFailedSendHashmailCourier(t *harnessTest) {
654655
655656 // Simulate a failed attempt at sending the asset proof by stopping
656657 // the receiver node.
657- //
658- // The receiving tapd node does not return a proof received confirmation
659- // message via the universe RPC courier. We can simulate a proof
660- // transfer failure by stopping the courier service directly and not the
661- // receiving tapd node.
662658 require .NoError (t .t , t .tapd .stop (false ))
663659
664660 // Send asset and then mine to confirm the associated on-chain tx.
@@ -751,11 +747,6 @@ func testReattemptFailedSendUniCourier(t *harnessTest) {
751747
752748 // Simulate a failed attempt at sending the asset proof by stopping
753749 // the proof courier service.
754- //
755- // In following the hashmail proof courier protocol, the receiver node
756- // returns a proof received confirmation message via the courier.
757- // We can simulate a proof transfer failure by stopping the receiving
758- // tapd node. The courier service should still be operational.
759750 require .NoError (t .t , t .proofCourier .Stop ())
760751
761752 // Send asset and then mine to confirm the associated on-chain tx.
@@ -765,9 +756,9 @@ func testReattemptFailedSendUniCourier(t *harnessTest) {
765756 wg .Wait ()
766757}
767758
768- // testReattemptFailedReceiveUniCourier tests that a failed attempt at
769- // receiving an asset proof will be reattempted by the receiving tapd node. This
770- // test targets the universe proof courier.
759+ // testReattemptFailedReceiveUniCourier ensures that a failed attempt to receive
760+ // an asset proof is retried by the receiving Tapd node. This test focuses on
761+ // the universe proof courier.
771762func testReattemptFailedReceiveUniCourier (t * harnessTest ) {
772763 ctxb := context .Background ()
773764
0 commit comments