From 5c855e3b31a2db3305e902901482a1014fdd2b29 Mon Sep 17 00:00:00 2001 From: begmaroman Date: Fri, 8 Sep 2023 14:16:34 +0800 Subject: [PATCH] Fixed test --- state/executor_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/state/executor_test.go b/state/executor_test.go index 161e29363b..6d3ecb82d0 100644 --- a/state/executor_test.go +++ b/state/executor_test.go @@ -113,7 +113,7 @@ func Test_Transition_checkDynamicFees(t *testing.T) { }, wantErr: func(t assert.TestingT, err error, i ...interface{}) bool { expectedError := fmt.Sprintf("max fee per gas less than block base fee: "+ - "address %s, GasFeeCap: 10, BaseFee: 20", types.ZeroAddress) + "address %s, GasFeeCap/GasPrice: 10, BaseFee: 20", types.ZeroAddress) assert.EqualError(t, err, expectedError, i) return true