Skip to content

Commit

Permalink
Change exists
Browse files Browse the repository at this point in the history
  • Loading branch information
ManuelBilbao committed Dec 2, 2024
1 parent bde36e2 commit 2a47728
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/common/src/signer/store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -520,9 +520,9 @@ mod test {
.join("BLS")
.join(proxy_signer.pubkey().to_string());

assert!(sig_path.exists());
assert!(json_path.exists());
assert!(pass_path.exists());
assert!(json_path.is_file());
assert!(sig_path.is_file());
assert!(pass_path.is_file());

let keystore: JsonKeystore = serde_json::de::from_str(
&std::fs::read_to_string(
Expand Down

0 comments on commit 2a47728

Please sign in to comment.