diff options
Diffstat (limited to 'prog/encoding_test.go')
| -rw-r--r-- | prog/encoding_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/prog/encoding_test.go b/prog/encoding_test.go index 42f16036c..e5d5a2d38 100644 --- a/prog/encoding_test.go +++ b/prog/encoding_test.go @@ -404,11 +404,11 @@ func TestSerializeDeserializeRandom(t *testing.T) { if ok { t.Log("flaky?") } - decoded0, err := target.DeserializeExec(data0[:n0]) + decoded0, err := target.DeserializeExec(data0[:n0], nil) if err != nil { t.Fatal(err) } - decoded1, err := target.DeserializeExec(data1[:n1]) + decoded1, err := target.DeserializeExec(data1[:n1], nil) if err != nil { t.Fatal(err) } |
