From 5b2ed5b065f34aed39d1b438369d463eb051373f Mon Sep 17 00:00:00 2001 From: Will Smith Date: Sun, 8 Oct 2023 16:52:58 -0700 Subject: [PATCH] fix: remove test from local --- .../tests/abi/ZeroxExchangeProxy.json | 34 ------------------- crates/sol-types/tests/sol.rs | 9 ----- 2 files changed, 43 deletions(-) delete mode 100644 crates/json-abi/tests/abi/ZeroxExchangeProxy.json diff --git a/crates/json-abi/tests/abi/ZeroxExchangeProxy.json b/crates/json-abi/tests/abi/ZeroxExchangeProxy.json deleted file mode 100644 index 16392cab5a..0000000000 --- a/crates/json-abi/tests/abi/ZeroxExchangeProxy.json +++ /dev/null @@ -1,34 +0,0 @@ -[ - { - "inputs": [], - "stateMutability": "nonpayable", - "type": "constructor" - }, - { - "stateMutability": "payable", - "type": "fallback" - }, - { - "inputs": [ - { - "internalType": "bytes4", - "name": "selector", - "type": "bytes4" - } - ], - "name": "getFunctionImplementation", - "outputs": [ - { - "internalType": "address", - "name": "impl", - "type": "address" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "stateMutability": "payable", - "type": "receive" - } -] diff --git a/crates/sol-types/tests/sol.rs b/crates/sol-types/tests/sol.rs index c154bbbef3..2745db77e8 100644 --- a/crates/sol-types/tests/sol.rs +++ b/crates/sol-types/tests/sol.rs @@ -553,15 +553,6 @@ fn abigen_json_aggregation_router_v5() { ); } -#[test] -#[cfg(feature = "json")] -fn abigen_json_0x_proxy() { - sol!( - ZeroXExchangeProxy, - "../json-abi/tests/abi/ZeroxExchangeProxy.json" - ); -} - #[test] fn eip712_encode_type_nesting() { sol! {