Skip to content
This repository was archived by the owner on Jan 22, 2025. It is now read-only.

Commit ec76826

Browse files
authored
Unflake rpc subscriptions test by reducing sub count (#9078) (#9082)
automerge
1 parent d4ddb62 commit ec76826

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/tests/rpc.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ fn test_rpc_subscriptions() {
212212

213213
// Create transaction signatures to subscribe to
214214
let transactions_socket = UdpSocket::bind("0.0.0.0:0").unwrap();
215-
let transactions: Vec<Transaction> = (0..500)
215+
let transactions: Vec<Transaction> = (0..100)
216216
.map(|_| system_transaction::transfer(&alice, &Pubkey::new_rand(), 1, genesis_hash))
217217
.collect();
218218
let mut signature_set: HashSet<String> = transactions

0 commit comments

Comments
 (0)