From 2f7b5f8cb0ee911c2d4bc94a6f01b0280755b20b Mon Sep 17 00:00:00 2001 From: Divma Date: Wed, 20 Oct 2021 23:12:12 +0000 Subject: [PATCH] Update mainnet altair types test (#2738) ## Issue Addressed e895074ba updated the altair fork and now that we are a week away this test no longer panics. ## Proposed Changes Remove the expected panic and explanatory note. --- testing/web3signer_tests/src/lib.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/testing/web3signer_tests/src/lib.rs b/testing/web3signer_tests/src/lib.rs index 12f06f9de..b28b4189a 100644 --- a/testing/web3signer_tests/src/lib.rs +++ b/testing/web3signer_tests/src/lib.rs @@ -556,13 +556,7 @@ mod tests { test_base_types("mainnet", 4242).await } - /* The Altair fork for mainnet has not been announced, so this test will always fail. - * - * If this test starts failing, it's likely that the fork has been decided and we should remove - * the `#[should_panic]` - */ #[tokio::test] - #[should_panic] async fn mainnet_altair_types() { test_altair_types("mainnet", 4243).await }