From f8696c2b7a79debfacb1027310b8d0e88fe1a10e Mon Sep 17 00:00:00 2001 From: DaniPopes <57450786+DaniPopes@users.noreply.github.com> Date: Fri, 24 Feb 2023 21:43:33 +0100 Subject: [PATCH] chore: clippy --- ethers-contract/tests/it/contract.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ethers-contract/tests/it/contract.rs b/ethers-contract/tests/it/contract.rs index d6cbc82c..89dcb926 100644 --- a/ethers-contract/tests/it/contract.rs +++ b/ethers-contract/tests/it/contract.rs @@ -1,4 +1,4 @@ -use super::common::*; +use crate::common::*; use ethers_contract::{ abigen, ContractFactory, ContractInstance, EthAbiType, EthEvent, LogMeta, Multicall, MulticallError, MulticallVersion, @@ -61,7 +61,7 @@ impl Middleware for NonClone { // this is not a test. It is a compile check. :) // It exists to ensure that trait bounds on contract internal behave as // expected. It should not be run -fn it_compiles() { +fn _it_compiles() { let (abi, _bytecode) = compile_contract("SimpleStorage", "SimpleStorage.sol"); // launch anvil