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

Commit 2f25985

Browse files
committed
Make diff readable really
1 parent 2687636 commit 2f25985

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

local-cluster/tests/local_cluster.rs

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3774,6 +3774,18 @@ fn test_optimistic_confirmation_violation_without_tower() {
37743774
do_test_optimistic_confirmation_violation_with_or_without_tower(false);
37753775
}
37763776

3777+
#[test]
3778+
#[serial]
3779+
fn test_run_test_load_program_accounts_root() {
3780+
run_test_load_program_accounts(CommitmentConfig::finalized());
3781+
}
3782+
3783+
#[test]
3784+
#[serial]
3785+
fn test_run_test_load_program_accounts_partition_root() {
3786+
run_test_load_program_accounts_partition(CommitmentConfig::finalized());
3787+
}
3788+
37773789
fn create_simple_snapshot_config(ledger_path: &Path) -> SnapshotConfig {
37783790
SnapshotConfig {
37793791
snapshot_archives_dir: ledger_path.to_path_buf(),
@@ -3990,18 +4002,6 @@ fn test_hard_fork_with_gap_in_roots() {
39904002
do_test_hard_fork_with_or_without_gap_in_roots(true);
39914003
}
39924004

3993-
#[test]
3994-
#[serial]
3995-
fn test_run_test_load_program_accounts_root() {
3996-
run_test_load_program_accounts(CommitmentConfig::finalized());
3997-
}
3998-
3999-
#[test]
4000-
#[serial]
4001-
fn test_run_test_load_program_accounts_partition_root() {
4002-
run_test_load_program_accounts_partition(CommitmentConfig::finalized());
4003-
}
4004-
40054005
fn run_test_load_program_accounts_partition(scan_commitment: CommitmentConfig) {
40064006
let num_slots_per_validator = 8;
40074007
let partitions: [Vec<usize>; 2] = [vec![1], vec![1]];

0 commit comments

Comments
 (0)