Skip to content

Commit

Permalink
Integration Test: the first spec run at last
Browse files Browse the repository at this point in the history
  • Loading branch information
eval-exec committed Aug 13, 2024
1 parent 190ce0e commit ea2f4bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,7 @@ fn all_specs() -> Vec<Box<dyn Spec>> {
Box::new(RandomlyKill),
];
specs.shuffle(&mut thread_rng());
specs.append(&mut vec![Box::new(SyncChurn) as Box<dyn Spec>]);
specs.insert(0, Box::new(SyncChurn) as Box<dyn Spec>);
specs
}

Expand Down

0 comments on commit ea2f4bc

Please sign in to comment.