From 77fe6e3535b6eddd5b9b819f62e060222580e539 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20I=C3=B1aki=20Bilbao?= Date: Mon, 2 Dec 2024 16:08:01 -0300 Subject: [PATCH] Fix parallel tests failures --- crates/common/src/signer/store.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/common/src/signer/store.rs b/crates/common/src/signer/store.rs index 0d35fc2b..b0d13822 100644 --- a/crates/common/src/signer/store.rs +++ b/crates/common/src/signer/store.rs @@ -472,7 +472,7 @@ mod test { #[tokio::test] async fn test_erc2335_storage_format() { - let tmp_path = std::env::temp_dir(); + let tmp_path = std::env::temp_dir().join("test_erc2335_storage_format"); let keys_path = tmp_path.join("keys"); let secrets_path = tmp_path.join("secrets"); let store = ProxyStore::ERC2335 { @@ -594,7 +594,7 @@ mod test { #[tokio::test] async fn test_erc2335_store_and_load() { - let tmp_path = std::env::temp_dir(); + let tmp_path = std::env::temp_dir().join("test_erc2335_store_and_load"); let keys_path = tmp_path.join("keys"); let secrets_path = tmp_path.join("secrets"); let store = ProxyStore::ERC2335 {