mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-12 12:15:40 +00:00
Remove extra commas made redundent after rustfmt (#9404)
* Remove extra commas made redundent after rustfmt
This commit is contained in:
@@ -759,7 +759,7 @@ mod tests {
|
||||
chain_state.import_header(h3);
|
||||
});
|
||||
|
||||
assert_eq!(unapply_commit(res), unapply_commit(unknown_commit()),);
|
||||
assert_eq!(unapply_commit(res), unapply_commit(unknown_commit()));
|
||||
}
|
||||
|
||||
#[test]
|
||||
@@ -787,7 +787,7 @@ mod tests {
|
||||
chain_state.import_header(h3);
|
||||
});
|
||||
|
||||
assert_eq!(unapply_commit(res), unapply_commit(known_commit()),);
|
||||
assert_eq!(unapply_commit(res), unapply_commit(known_commit()));
|
||||
}
|
||||
|
||||
#[test]
|
||||
@@ -835,7 +835,7 @@ mod tests {
|
||||
chain_state.import_header(h3);
|
||||
});
|
||||
|
||||
assert_eq!(unapply_catch_up(res), unapply_catch_up(unknown_catch_up()),);
|
||||
assert_eq!(unapply_catch_up(res), unapply_catch_up(unknown_catch_up()));
|
||||
}
|
||||
|
||||
#[test]
|
||||
@@ -883,7 +883,7 @@ mod tests {
|
||||
chain_state.import_header(h3);
|
||||
});
|
||||
|
||||
assert_eq!(unapply_catch_up(res), unapply_catch_up(unknown_catch_up()),);
|
||||
assert_eq!(unapply_catch_up(res), unapply_catch_up(unknown_catch_up()));
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
||||
Reference in New Issue
Block a user