Skip to content

Commit abe7ed8

Browse files
committed
Fix typo in unified_payment send test and improve test name.
1 parent 3dfd2ae commit abe7ed8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/integration_tests_rust.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1433,7 +1433,7 @@ async fn generate_bip21_uri() {
14331433
}
14341434

14351435
#[tokio::test(flavor = "multi_thread", worker_threads = 1)]
1436-
async fn unified_qr_send_receive() {
1436+
async fn unified_send_receive_qr_uri() {
14371437
let (bitcoind, electrsd) = setup_bitcoind_and_electrsd();
14381438
let chain_source = TestChainSource::Esplora(&electrsd);
14391439

@@ -1482,7 +1482,7 @@ async fn unified_qr_send_receive() {
14821482
panic!("Expected Bolt12 payment but got Bolt11");
14831483
},
14841484
Ok(UnifiedPaymentResult::Onchain { txid: _ }) => {
1485-
panic!("Expected Bolt12 payment but get On-chain transaction");
1485+
panic!("Expected Bolt12 payment but got On-chain transaction");
14861486
},
14871487
Err(e) => {
14881488
panic!("Expected Bolt12 payment but got error: {:?}", e);

0 commit comments

Comments
 (0)