From 1060ef554aceb940db6cf340b1a574421a224923 Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Mon, 9 Dec 2024 23:46:08 +0100 Subject: [PATCH] cmd/evm: fix lint --- cmd/evm/t8n_test.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/cmd/evm/t8n_test.go b/cmd/evm/t8n_test.go index b2a29ef327..85caf010b3 100644 --- a/cmd/evm/t8n_test.go +++ b/cmd/evm/t8n_test.go @@ -634,7 +634,6 @@ func TestEvmRun(t *testing.T) { wantStderr: "./testdata/evmrun/8.out.2.txt", }, } { - tt.Logf("args: go run ./cmd/evm %v\n", strings.Join(tc.input, " ")) tt.Run("evm-test", tc.input...) @@ -656,8 +655,8 @@ func TestEvmRun(t *testing.T) { if err != nil { t.Fatalf("test %d: could not read expected output: %v", i, err) } - if string(have) != string(want) { - t.Fatalf("test %d, output wrong\nhave %q\nwant %q\n", i, string(have), string(want)) + if have != string(want) { + t.Fatalf("test %d, output wrong\nhave %q\nwant %q\n", i, have, string(want)) } } }