Skip to content

Commit

Permalink
Update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
paulhauner committed Aug 24, 2022
1 parent f77788a commit 1c804a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions validator_client/src/http_api/tests/keystores.rs
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ fn get_web3_signer_keystores() {
.map(|local_keystore| SingleKeystoreResponse {
validating_pubkey: keystore_pubkey(local_keystore),
derivation_path: local_keystore.path(),
readonly: None,
readonly: Some(false),
})
.chain(remote_vals.iter().map(|remote_val| SingleKeystoreResponse {
validating_pubkey: remote_val.voting_public_key.compress(),
Expand Down Expand Up @@ -1775,7 +1775,7 @@ fn import_same_local_and_remote_keys() {
.map(|local_keystore| SingleKeystoreResponse {
validating_pubkey: keystore_pubkey(local_keystore),
derivation_path: local_keystore.path(),
readonly: None,
readonly: Some(false),
})
.collect::<Vec<_>>();
for response in expected_responses {
Expand Down

0 comments on commit 1c804a9

Please sign in to comment.