Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
syntax typo correction
should pass now
  • Loading branch information
ugexe committed May 9, 2015
1 parent fdaa7dc commit 8ce998e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion S32-io/IO-Socket-Async.t
Expand Up @@ -29,7 +29,7 @@ my $echoTap = $server.tap(-> $c {
}, quit => { say $_; });
});

await IO::Socket::Async.connect($hostname, $port).then(-> $sr{
await IO::Socket::Async.connect($hostname, $port).then(-> $sr {
is $sr.status, Kept, 'Async connect to available server keeps promise';
$sr.result.close() if $sr.status == Kept;
});
Expand Down

0 comments on commit 8ce998e

Please sign in to comment.