Skip to content

Commit

Permalink
remove test
Browse files Browse the repository at this point in the history
  • Loading branch information
TomasArrachea committed Dec 19, 2024
1 parent c89e96e commit aeeae03
Showing 1 changed file with 0 additions and 17 deletions.
17 changes: 0 additions & 17 deletions crates/chainio/clients/elcontracts/src/reader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1596,23 +1596,6 @@ mod tests {
assert_eq!(ret.len(), 0);
}

#[tokio::test]
async fn test_can_call() {
// TODO: test with real values
let (_container, http_endpoint, _ws_endpoint) = start_anvil_container().await;
let chain_reader = build_el_chain_reader(http_endpoint.clone()).await;

let account_address = Address::ZERO;
let target = Address::ZERO;
let selector = FixedBytes::from([0x00; 4]);
let can_call = chain_reader
.can_call(account_address, OPERATOR_ADDRESS, target, selector)
.await
.unwrap();

assert!(!can_call);
}

#[tokio::test]
async fn test_list_appointee() {
// TODO: test with real values
Expand Down

0 comments on commit aeeae03

Please sign in to comment.