Skip to content

Commit

Permalink
core/vm: remove debug printout in eof test (ethereum#30665)
Browse files Browse the repository at this point in the history
  • Loading branch information
jwasinger authored Oct 24, 2024
1 parent 461afdf commit 24c5493
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions core/vm/eof_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ package vm

import (
"encoding/hex"
"fmt"
"reflect"
"testing"

Expand Down Expand Up @@ -95,7 +94,6 @@ func TestEOFSubcontainer(t *testing.T) {
if err := got.UnmarshalBinary(b, true); err != nil {
t.Fatal(err)
}
fmt.Print(got)
if res := got.MarshalBinary(); !reflect.DeepEqual(res, b) {
t.Fatalf("invalid marshalling, want %v got %v", b, res)
}
Expand Down

0 comments on commit 24c5493

Please sign in to comment.