Skip to content

Commit 7c35e2a

Browse files
committed
The tests had to go, because there's no config to test against
1 parent 0a947c7 commit 7c35e2a

File tree

1 file changed

+0
-19
lines changed

1 file changed

+0
-19
lines changed

lighthouse/tests/beacon_node.rs

-19
Original file line numberDiff line numberDiff line change
@@ -2584,22 +2584,3 @@ fn genesis_state_url_value() {
25842584
assert_eq!(config.genesis_state_url_timeout, Duration::from_secs(42));
25852585
});
25862586
}
2587-
2588-
#[test]
2589-
fn disable_duplicate_warn_logs_default() {
2590-
CommandLineTest::new()
2591-
.run_with_zero_port()
2592-
.with_config(|config| {
2593-
assert_eq!(config.network.disable_duplicate_warn_logs, false);
2594-
});
2595-
}
2596-
2597-
#[test]
2598-
fn disable_duplicate_warn_logs() {
2599-
CommandLineTest::new()
2600-
.flag("disable-duplicate-warn-logs", None)
2601-
.run_with_zero_port()
2602-
.with_config(|config| {
2603-
assert_eq!(config.network.disable_duplicate_warn_logs, true);
2604-
});
2605-
}

0 commit comments

Comments
 (0)