Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix deprecated .sleep call
  • Loading branch information
lizmat committed Feb 20, 2015
1 parent aa5202f commit f476a59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion S17-supply/start.t
Expand Up @@ -9,7 +9,7 @@ dies_ok { Supply.start({...}) }, 'can not be called as a class method';
{
my $master = Supply.new;
ok $master ~~ Supply, 'Did we get a master Supply?';
my $starter = $master.start( { .sleep; $_ } );
my $starter = $master.start( { sleep $_; $_ } );
ok $starter ~~ Supply, 'Did we get a starter Supply?';

my @supplies;
Expand Down

0 comments on commit f476a59

Please sign in to comment.