parsing complex tests works modulo the contract addresses in calldata

Signed-off-by: Cyrill Leutwiler <bigcyrill@hotmail.com>
This commit is contained in:
Cyrill Leutwiler
2025-03-19 16:23:04 +01:00
parent d08d6fd66f
commit 67f068ca12
15 changed files with 429 additions and 27 deletions
+1 -2
View File
@@ -1,4 +1,4 @@
use serde::{Deserialize, de::Deserializer};
use serde::Deserialize;
use crate::{input::Input, mode::Mode};
@@ -8,5 +8,4 @@ pub struct Case {
pub comment: Option<String>,
pub modes: Option<Vec<Mode>>,
pub inputs: Vec<Input>,
pub expected: Vec<String>,
}