From 523026d5d4ce504fbdb9aad82a1cabea9dff6bb5 Mon Sep 17 00:00:00 2001 From: TaprootFreak <142087526+TaprootFreak@users.noreply.github.com> Date: Fri, 29 May 2026 10:10:06 +0200 Subject: [PATCH] Merge pull request #137 from zk-coins/fix/second-send-test-prd-skip-naming test(api_remote): rename second-send test to carry _roundtrip_ substring --- node/src/account_node_tests.rs | 2 +- node/tests/api_remote.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/node/src/account_node_tests.rs b/node/src/account_node_tests.rs index dfc5687e..bf78f3c1 100644 --- a/node/src/account_node_tests.rs +++ b/node/src/account_node_tests.rs @@ -771,7 +771,7 @@ fn test_send_coins_twice_from_same_account_uses_update_account() { /// `"prev_commitment_pubkey required for account update"`. /// /// Live-server analogue is the api_remote test -/// `second_send_succeeds_without_prev_commitment_pubkey_field` — +/// `second_send_roundtrip_succeeds_without_prev_commitment_pubkey_field` — /// this one drives the same code path through `account_node` directly /// (no prover, no HTTP) so the contract is pinned even when the /// `api_remote` suite is skipped (slim CI). diff --git a/node/tests/api_remote.rs b/node/tests/api_remote.rs index ce77ee52..0326ee0e 100644 --- a/node/tests/api_remote.rs +++ b/node/tests/api_remote.rs @@ -1954,7 +1954,7 @@ async fn balance_response_num_sends_starts_zero_and_bumps_on_send() { /// send #2 with `prev_commitment_pubkey` deliberately omitted → /// MUST succeed (AccountUpdate branch reads its own stored value). #[tokio::test] -async fn second_send_succeeds_without_prev_commitment_pubkey_field() { +async fn second_send_roundtrip_succeeds_without_prev_commitment_pubkey_field() { let client = http_client(); let alice = TestWallet::new(); let bob = TestWallet::new();