mirror of
https://github.com/msgpack/msgpack-python.git
synced 2026-02-06 17:59:52 +00:00
Fix an use of execute()
This commit is contained in:
parent
3cffd46008
commit
8eaed95e02
1 changed files with 1 additions and 1 deletions
|
|
@ -35,7 +35,7 @@ is_deeply(Data::MessagePack->unpack($packed), $input);
|
|||
while( read($stream, $buff, $size) ) {
|
||||
note "buff: ", join " ", map { unpack 'H2', $_ } split //, $buff;
|
||||
|
||||
$up->execute($buff);
|
||||
$up->execute($buff, 0);
|
||||
}
|
||||
ok $up->is_finished, 'is_finished';
|
||||
my $data = $up->data;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue