chore: fmt

This commit is contained in:
Georgios Konstantopoulos
2023-02-24 17:08:14 -08:00
parent 0ce507b4ad
commit 9c841c9082

View File

@ -181,8 +181,7 @@ mod tests {
#[test]
fn parse_common_import_command_chain_args() {
for chain in ["mainnet", "sepolia", "goerli"] {
let args: ImportCommand =
ImportCommand::parse_from(["reth", "--chain", chain, "."]);
let args: ImportCommand = ImportCommand::parse_from(["reth", "--chain", chain, "."]);
assert_eq!(args.chain.chain, chain.parse().unwrap());
}
}