Skip to content

Commit

Permalink
Fix parallel tests failures
Browse files Browse the repository at this point in the history
  • Loading branch information
ManuelBilbao committed Dec 2, 2024
1 parent 18e75f2 commit 77fe6e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/common/src/signer/store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -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 {
Expand Down

0 comments on commit 77fe6e3

Please sign in to comment.