diff options
Diffstat (limited to 'prog/encoding_test.go')
| -rw-r--r-- | prog/encoding_test.go | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/prog/encoding_test.go b/prog/encoding_test.go index 11e71867f..e0e6fbefd 100644 --- a/prog/encoding_test.go +++ b/prog/encoding_test.go @@ -421,7 +421,7 @@ func TestSerializeCallProps(t *testing.T) { }, { "serialize0(0x0) (fail_nth: 5)\n", - []CallProps{{5}}, + []CallProps{{5, false}}, }, { "serialize0(0x0) (fail_nth)\n", @@ -431,6 +431,10 @@ func TestSerializeCallProps(t *testing.T) { "serialize0(0x0) (fail_nth: \"5\")\n", nil, }, + { + "serialize0(0x0) (async)\n", + []CallProps{{0, true}}, + }, } for _, test := range tests { |
