We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf6e8d1 commit d80b201Copy full SHA for d80b201
crates/blockchain/tests/forkchoice_spectests.rs
@@ -32,11 +32,11 @@ fn run(path: &Path) -> datatest_stable::Result<()> {
32
// Skip lexicographic tiebreaker test - fork labels in fixture are incorrect
33
// (references labels like 'fork_a_3' that don't exist in earlier steps)
34
if name.contains("lexicographic_tiebreaker") {
35
- println!("Skipping test (fixture has incorrect fork labels): {}", name);
+ println!("Skipping test (fixture has incorrect fork labels): {name}");
36
continue;
37
}
38
39
- println!("Running test: {}", name);
+ println!("Running test: {name}");
40
41
// Initialize store from anchor state/block
42
let anchor_state: State = test.anchor_state.into();
0 commit comments