Skip to content

Commit

Permalink
test both argument variants
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Jan 14, 2017
1 parent f598fcb commit 4bcbc03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion t/mojo/tls.t
Expand Up @@ -21,7 +21,7 @@ my $delay = Mojo::IOLoop->delay;
my $server = Mojo::IOLoop::TLS->new($server_sock);
$server->once(upgrade => $delay->begin);
$server->once(error => sub { warn pop });
$server->negotiate(server => 1);
$server->negotiate({server => 1});
my $client = Mojo::IOLoop::TLS->new($client_sock);
$client->once(upgrade => $delay->begin);
$client->once(error => sub { warn pop });
Expand Down

0 comments on commit 4bcbc03

Please sign in to comment.