diff --git a/ethers-solc/tests/project.rs b/ethers-solc/tests/project.rs index 7d62c5f4..ee8680a3 100644 --- a/ethers-solc/tests/project.rs +++ b/ethers-solc/tests/project.rs @@ -101,13 +101,13 @@ fn can_compile_yul_sample() { let compiled = project.compile().unwrap(); assert!(compiled.find("Dapp").is_some()); assert!(compiled.find("SimpleStore").is_some()); + assert!(compiled.find("SimpleStore").unwrap().abi.is_some()); assert!(!compiled.has_compiler_errors()); // nothing to compile let compiled = project.compile().unwrap(); assert!(compiled.find("Dapp").is_some()); assert!(compiled.find("SimpleStore").is_some()); - println!{"{:?}", compiled}; assert!(compiled.is_unchanged()); let cache = SolFilesCache::read(project.cache_path()).unwrap();