Skip to content

Commit

Permalink
happy fix
Browse files Browse the repository at this point in the history
  • Loading branch information
brockelmore committed Jul 20, 2024
1 parent 76fa00d commit 5b84232
Show file tree
Hide file tree
Showing 8 changed files with 1 addition and 12 deletions.
1 change: 0 additions & 1 deletion crates/graph/src/range/exec/bitwise.rs
Original file line number Diff line number Diff line change
Expand Up @@ -681,7 +681,6 @@ pub fn exec_bit_not(
#[cfg(test)]
mod tests {
use super::*;
use ethers_core::types::{I256, U256};
use solang_parser::pt::Loc;

#[test]
Expand Down
2 changes: 0 additions & 2 deletions crates/graph/src/range/exec/math_ops/add.rs
Original file line number Diff line number Diff line change
Expand Up @@ -315,8 +315,6 @@ pub fn exec_add(
mod tests {
use super::*;
use crate::DummyGraph;
use ethers_core::types::U256;
use solang_parser::pt::Loc;

#[test]
fn uint_uint() {
Expand Down
1 change: 0 additions & 1 deletion crates/graph/src/range/exec/math_ops/div.rs
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,6 @@ pub fn exec_div(
mod tests {
use super::*;
use crate::DummyGraph;
use solang_parser::pt::Loc;

#[test]
fn uint_uint() {
Expand Down
2 changes: 1 addition & 1 deletion crates/graph/src/range/exec/math_ops/exp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ pub fn exec_exp(
mod tests {
use super::*;
use crate::DummyGraph;
use ethers_core::types::{I256, U256};
use ethers_core::types::I256;
use solang_parser::pt::Loc;

#[test]
Expand Down
1 change: 0 additions & 1 deletion crates/graph/src/range/exec/math_ops/mul.rs
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,6 @@ pub fn exec_mul(
mod tests {
use super::*;
use crate::DummyGraph;
use ethers_core::types::U256;
use solang_parser::pt::Loc;

#[test]
Expand Down
2 changes: 0 additions & 2 deletions crates/graph/src/range/exec/math_ops/sub.rs
Original file line number Diff line number Diff line change
Expand Up @@ -319,8 +319,6 @@ pub fn exec_sub(
mod tests {
use super::*;
use crate::DummyGraph;
use ethers_core::types::U256;
use solang_parser::pt::Loc;

#[test]
fn uint_uint() {
Expand Down
2 changes: 0 additions & 2 deletions crates/graph/src/range/exec/mem_ops/mem_get.rs
Original file line number Diff line number Diff line change
Expand Up @@ -202,9 +202,7 @@ pub fn exec_get_index(
mod tests {
use super::*;
use crate::DummyGraph;
use ethers_core::types::U256;
use pretty_assertions::assert_eq;
use solang_parser::pt::Loc;

#[test]
fn concrete_len() {
Expand Down
2 changes: 0 additions & 2 deletions crates/graph/src/range/exec/mem_ops/mem_set.rs
Original file line number Diff line number Diff line change
Expand Up @@ -261,8 +261,6 @@ pub fn exec_set_indices(
#[cfg(test)]
mod tests {
use super::*;

use ethers_core::types::U256;
use pretty_assertions::assert_eq;
use solang_parser::pt::Loc;

Expand Down

0 comments on commit 5b84232

Please sign in to comment.