core/vm: remove debug printout in eof test (#30665)

pull/30671/head
jwasinger 4 weeks ago committed by GitHub
parent 461afdf665
commit 24c5493bec
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      core/vm/eof_test.go

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

Loading…
Cancel
Save