From 1e60ba82d31bc17111481998100cd948ee06c0ab Mon Sep 17 00:00:00 2001 From: Roberto Bayardo Date: Wed, 6 Nov 2024 22:08:16 -0800 Subject: [PATCH] miner/payload_builder_test.go: fix name of payload building test (#423) * fix name of test * Update miner/payload_building_test.go --------- Co-authored-by: Sebastian Stammler --- miner/payload_building_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/miner/payload_building_test.go b/miner/payload_building_test.go index 233c6720ba..ee5e2e6944 100644 --- a/miner/payload_building_test.go +++ b/miner/payload_building_test.go @@ -192,9 +192,9 @@ func TestDAFilters(t *testing.T) { // The first transaction has size 100, all other DA test txs are bigger due to random Data, so should get filtered. t.Run("with-tx-filter-all-but-first", func(t *testing.T) { testDAFilters(t, big.NewInt(100), nil, 1) }) t.Run("with-block-filter-all-but-first", func(t *testing.T) { testDAFilters(t, nil, big.NewInt(100), 1) }) - // Zero/nil values for these parameters means we should mean never filter + // Zero/nil values for these parameters means we should never filter t.Run("with-zero-tx-filters", func(t *testing.T) { testDAFilters(t, big.NewInt(0), big.NewInt(0), totalTxs) }) - t.Run("with-zero-tx-filters", func(t *testing.T) { testDAFilters(t, nil, nil, totalTxs) }) + t.Run("with-nil-tx-filters", func(t *testing.T) { testDAFilters(t, nil, nil, totalTxs) }) } func holoceneConfig() *params.ChainConfig {