Merge branch 'master' into tracing/v1.1

This commit is contained in:
Sina Mahmoodi 2024-10-25 06:26:29 +02:00
commit b37f2aca85
1 changed files with 0 additions and 2 deletions

View File

@ -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)
} }