diff --git a/data/basics/msgp_gen_test.go b/data/basics/msgp_gen_test.go index bae0e2e5cf..5ac65240f4 100644 --- a/data/basics/msgp_gen_test.go +++ b/data/basics/msgp_gen_test.go @@ -373,6 +373,7 @@ func BenchmarkUnmarshalBalanceRecord(b *testing.B) { } func TestMarshalUnmarshalStateDelta(t *testing.T) { + partitiontest.PartitionTest(t) v := StateDelta{} bts := v.MarshalMsg(nil) left, err := v.UnmarshalMsg(bts) diff --git a/data/transactions/msgp_gen_test.go b/data/transactions/msgp_gen_test.go index 0113b5ada7..d92a29cf8f 100644 --- a/data/transactions/msgp_gen_test.go +++ b/data/transactions/msgp_gen_test.go @@ -373,6 +373,7 @@ func BenchmarkUnmarshalCompactCertTxnFields(b *testing.B) { } func TestMarshalUnmarshalEvalDelta(t *testing.T) { + partitiontest.PartitionTest(t) v := EvalDelta{} bts := v.MarshalMsg(nil) left, err := v.UnmarshalMsg(bts) @@ -432,6 +433,7 @@ func BenchmarkUnmarshalEvalDelta(b *testing.B) { } func TestMarshalUnmarshalHeader(t *testing.T) { + partitiontest.PartitionTest(t) v := Header{} bts := v.MarshalMsg(nil) left, err := v.UnmarshalMsg(bts) @@ -491,6 +493,7 @@ func BenchmarkUnmarshalHeader(b *testing.B) { } func TestMarshalUnmarshalKeyregTxnFields(t *testing.T) { + partitiontest.PartitionTest(t) v := KeyregTxnFields{} bts := v.MarshalMsg(nil) left, err := v.UnmarshalMsg(bts) @@ -550,6 +553,7 @@ func BenchmarkUnmarshalKeyregTxnFields(b *testing.B) { } func TestMarshalUnmarshalLogicSig(t *testing.T) { + partitiontest.PartitionTest(t) v := LogicSig{} bts := v.MarshalMsg(nil) left, err := v.UnmarshalMsg(bts) @@ -609,6 +613,7 @@ func BenchmarkUnmarshalLogicSig(b *testing.B) { } func TestMarshalUnmarshalPaymentTxnFields(t *testing.T) { + partitiontest.PartitionTest(t) v := PaymentTxnFields{} bts := v.MarshalMsg(nil) left, err := v.UnmarshalMsg(bts) @@ -668,6 +673,7 @@ func BenchmarkUnmarshalPaymentTxnFields(b *testing.B) { } func TestMarshalUnmarshalPayset(t *testing.T) { + partitiontest.PartitionTest(t) v := Payset{} bts := v.MarshalMsg(nil) left, err := v.UnmarshalMsg(bts) @@ -727,6 +733,7 @@ func BenchmarkUnmarshalPayset(b *testing.B) { } func TestMarshalUnmarshalSignedTxn(t *testing.T) { + partitiontest.PartitionTest(t) v := SignedTxn{} bts := v.MarshalMsg(nil) left, err := v.UnmarshalMsg(bts) @@ -786,6 +793,7 @@ func BenchmarkUnmarshalSignedTxn(b *testing.B) { } func TestMarshalUnmarshalSignedTxnInBlock(t *testing.T) { + partitiontest.PartitionTest(t) v := SignedTxnInBlock{} bts := v.MarshalMsg(nil) left, err := v.UnmarshalMsg(bts) @@ -845,6 +853,7 @@ func BenchmarkUnmarshalSignedTxnInBlock(b *testing.B) { } func TestMarshalUnmarshalSignedTxnWithAD(t *testing.T) { + partitiontest.PartitionTest(t) v := SignedTxnWithAD{} bts := v.MarshalMsg(nil) left, err := v.UnmarshalMsg(bts) @@ -904,6 +913,7 @@ func BenchmarkUnmarshalSignedTxnWithAD(b *testing.B) { } func TestMarshalUnmarshalTransaction(t *testing.T) { + partitiontest.PartitionTest(t) v := Transaction{} bts := v.MarshalMsg(nil) left, err := v.UnmarshalMsg(bts) @@ -963,6 +973,7 @@ func BenchmarkUnmarshalTransaction(b *testing.B) { } func TestMarshalUnmarshalTxGroup(t *testing.T) { + partitiontest.PartitionTest(t) v := TxGroup{} bts := v.MarshalMsg(nil) left, err := v.UnmarshalMsg(bts)