From d08e43b9a857c069eea79e197c30aeb6399294d1 Mon Sep 17 00:00:00 2001 From: Austin Larson <78000745+alarso16@users.noreply.github.com> Date: Mon, 3 Nov 2025 17:41:20 -0500 Subject: [PATCH] test: Skip flaky ChainIndexer test (#1383) --- core/chain_indexer_test.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/core/chain_indexer_test.go b/core/chain_indexer_test.go index d6118b8222..e7d33ab82b 100644 --- a/core/chain_indexer_test.go +++ b/core/chain_indexer_test.go @@ -50,7 +50,12 @@ func TestChainIndexerSingle(t *testing.T) { // Runs multiple tests with randomized parameters and different number of // chain backends. +// +// This test and all its code is unedited from go-ethereum. Since coreth forked +// go-ethereum, no relevant fixes were made, besides replacing the ChainIndexer's +// functionality with a different structure. func TestChainIndexerWithChildren(t *testing.T) { + t.Skip("Flaky test from go-ethereum") for i := 2; i < 8; i++ { testChainIndexer(t, i) }