mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-13 03:26:38 +00:00
core/vm: remove debug printout in eof test (#30665)
This commit is contained in:
parent
0d1d689c37
commit
6a3f575fa7
1 changed files with 0 additions and 2 deletions
|
|
@ -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…
Reference in a new issue