From d0741aff15aadb3dc93e4875e1bba51057619e30 Mon Sep 17 00:00:00 2001 From: Jrigada Date: Wed, 28 Aug 2024 13:25:22 -0300 Subject: [PATCH] Remove unnecesary txt --- crates/compilers/tests/zksync.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/crates/compilers/tests/zksync.rs b/crates/compilers/tests/zksync.rs index cd52df6c..ca41f390 100644 --- a/crates/compilers/tests/zksync.rs +++ b/crates/compilers/tests/zksync.rs @@ -311,7 +311,6 @@ fn zksync_cant_compile_a_file_outside_allowed_paths() { // └── contracts/ // ├── src/ // │ └── Main.sol - // └── remappings.txt let tmp_dir = tempfile::tempdir().unwrap(); let project_root = tmp_dir.path().to_path_buf(); @@ -354,8 +353,6 @@ contract Util {} ) .unwrap(); - fs::write(contracts_dir.path().join("remappings.txt"), "@outer/=../outer/").unwrap(); - let root = contracts_dir.path().to_path_buf(); let paths = ProjectPathsConfig::builder() .root(root.clone()) @@ -422,8 +419,6 @@ contract Util {} ) .unwrap(); - fs::write(contracts_dir.path().join("remappings.txt"), "@outer/=../outer/").unwrap(); - let root = contracts_dir.path().to_path_buf(); let paths = ProjectPathsConfig::builder() .root(root.clone())