Skip to content

Commit 8586129

Browse files
committed
Merge branch 'lt/unify-bls' into lt/remove-builder-events
2 parents 241b50b + 97c6722 commit 8586129

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

tests/tests/pbs_get_status.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ async fn test_get_status() -> Result<()> {
4242
let res = mock_validator.do_get_status().await.expect("failed to get status");
4343
assert_eq!(res.status(), StatusCode::OK);
4444

45-
// Expect two statuses since two relays in config + 2 on startup of the service
46-
assert_eq!(mock_state.received_get_status(), 4);
45+
// Expect two statuses since two relays in config
46+
assert_eq!(mock_state.received_get_status(), 2);
4747
Ok(())
4848
}
4949

tests/tests/pbs_mux.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ async fn test_mux() -> Result<()> {
7070
// Status requests should go to all relays
7171
info!("Sending get status");
7272
assert_eq!(mock_validator.do_get_status().await?.status(), StatusCode::OK);
73-
assert_eq!(mock_state.received_get_status(), 6); // default + 2 mux relays were used + 3 on startup of the service
73+
assert_eq!(mock_state.received_get_status(), 3); // default + 2 mux relays were used
7474

7575
// Register requests should go to all relays
7676
info!("Sending register validator");

0 commit comments

Comments
 (0)