Skip to content

Commit

Permalink
fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
iamit-singh committed Apr 17, 2024
1 parent 21dd7b6 commit 429efe2
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions lighthouse/tests/beacon_node.rs
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,10 @@ fn run_merge_execution_endpoints_flag_test(flag: &str) {
SensitiveUrl::parse(&urls[0]).unwrap()
);
// Only the first secret file should be used.
assert_eq!(config.secret_file.as_ref().unwrap().clone(), jwts[0].clone());
assert_eq!(
config.secret_file.as_ref().unwrap().clone(),
jwts[0].clone()
);
});
}
#[test]
Expand Down Expand Up @@ -521,7 +524,10 @@ fn merge_jwt_secrets_flag() {
config.execution_endpoint.as_ref().unwrap().full.to_string(),
"http://localhost:8551/"
);
assert_eq!(config.secret_file.as_ref().unwrap().clone(), dir.path().join("jwt-file"));
assert_eq!(
config.secret_file.as_ref().unwrap().clone(),
dir.path().join("jwt-file")
);
});
}
#[test]
Expand Down

0 comments on commit 429efe2

Please sign in to comment.