Skip to content

Commit 69bc460

Browse files
committed
test
1 parent d906254 commit 69bc460

File tree

1 file changed

+9
-10
lines changed

1 file changed

+9
-10
lines changed

payjoin-ffi/dart/test/test_payjoin_integration_test.dart

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -403,10 +403,10 @@ void main() {
403403
// GET fallback psbt
404404
payjoin.ReceiveSession? payjoin_proposal =
405405
await process_receiver_proposal(
406-
payjoin.InitializedReceiveSession(session),
407-
recv_persister,
408-
ohttp_relay,
409-
);
406+
payjoin.InitializedReceiveSession(session),
407+
recv_persister,
408+
ohttp_relay,
409+
);
410410
expect(payjoin_proposal, isNotNull);
411411
expect(payjoin_proposal, isA<payjoin.PayjoinProposalReceiveSession>());
412412

@@ -429,8 +429,8 @@ void main() {
429429
// Inside the Sender:
430430
// Sender checks, isngs, finalizes, extracts, and broadcasts
431431
// Replay post fallback to get the response
432-
payjoin.RequestOhttpContext ohttp_context_request = send_ctx
433-
.createPollRequest(ohttp_relay);
432+
payjoin.RequestOhttpContext ohttp_context_request =
433+
send_ctx.createPollRequest(ohttp_relay);
434434
var final_response = await agent.post(
435435
Uri.parse(ohttp_context_request.request.url),
436436
headers: {"Content-Type": ohttp_context_request.request.contentType},
@@ -443,10 +443,9 @@ void main() {
443443
)
444444
.save(sender_persister);
445445
expect(checked_payjoin_proposal_psbt, isNotNull);
446-
var checked_payjoin_proposal_psbt_inner =
447-
(checked_payjoin_proposal_psbt
448-
as payjoin.ProgressPollingForProposalTransitionOutcome)
449-
.inner;
446+
var checked_payjoin_proposal_psbt_inner = (checked_payjoin_proposal_psbt
447+
as payjoin.ProgressPollingForProposalTransitionOutcome)
448+
.inner;
450449
var payjoin_psbt = jsonDecode(
451450
sender.call("walletprocesspsbt", [
452451
checked_payjoin_proposal_psbt_inner.serializeBase64(),

0 commit comments

Comments
 (0)