diff --git a/tests/integration/get_events.rs b/tests/integration/get_events.rs index c322ebe73..edfe0f6fc 100644 --- a/tests/integration/get_events.rs +++ b/tests/integration/get_events.rs @@ -427,7 +427,6 @@ const FORK_BLOCK_NUMBER: u64 = 1374700; const EVENTS_IN_FORK_BLOCK: usize = 330; #[tokio::test] -#[ignore] // TODO: Remove after mainnet release async fn get_events_from_forked_devnet_when_last_queried_block_on_origin() { let fork_devnet = fork_mainnet_at(FORK_BLOCK_NUMBER).await.unwrap(); @@ -493,7 +492,6 @@ async fn get_events_from_forked_devnet_when_first_queried_block_on_devnet() { } #[tokio::test] -#[ignore] // TODO: Remove after mainnet release async fn get_events_from_forked_devnet_when_first_queried_block_on_origin_and_last_on_devnet() { let fork_devnet = fork_mainnet_at(FORK_BLOCK_NUMBER).await.unwrap(); @@ -530,7 +528,6 @@ async fn get_events_from_forked_devnet_when_first_queried_block_on_origin_and_la } #[tokio::test] -#[ignore] // TODO: Remove after mainnet release async fn get_events_since_accepted_on_l1_on_origin() { let fork_devnet = fork_mainnet_at(FORK_BLOCK_NUMBER).await.unwrap(); diff --git a/tests/integration/subscription_to_blocks.rs b/tests/integration/subscription_to_blocks.rs index d956aebbd..e7439ec0f 100644 --- a/tests/integration/subscription_to_blocks.rs +++ b/tests/integration/subscription_to_blocks.rs @@ -394,7 +394,6 @@ async fn test_fork_subscription_to_blocks_by_hash() { } #[tokio::test] -#[ignore] // TODO: Remove after mainnet release async fn test_fork_subscription_to_old_blocks_should_fail() { // Setup original devnet with some blocks let origin_url = MAINNET_HTTPS_URL;