From 36f863a649807173e8cb755a5e80003d9c3f7833 Mon Sep 17 00:00:00 2001 From: Eitan Seri-Levi Date: Wed, 6 Sep 2023 09:16:20 +0300 Subject: [PATCH] linting --- beacon_node/http_api/tests/tests.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beacon_node/http_api/tests/tests.rs b/beacon_node/http_api/tests/tests.rs index 1e19b8da528..e78e8d785bd 100644 --- a/beacon_node/http_api/tests/tests.rs +++ b/beacon_node/http_api/tests/tests.rs @@ -4440,7 +4440,7 @@ impl ApiTester { assert_eq!(withdrawal_response.finalized, Some(false)); assert_eq!(withdrawal_response.data, expected_withdrawals.to_vec()); } - Err(e) => { + Err(_) => { panic!("query failed incorrectly"); } }