Skip to content

Commit

Permalink
Add spaces inside 'Future->done( 1 )'
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Haines committed Nov 3, 2015
1 parent 344649f commit eba968f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/42tags.pl
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ sub matrix_list_tags
defined $tags{test_tag} or die "Unexpected tag";
$tags{test_tag}{order} == 1 or die "Expected order == 1";

Future->done(1);
Future->done( 1 );
});
};

Expand Down Expand Up @@ -266,7 +266,7 @@ sub matrix_list_tags
defined $tags{test_tag} or die "Unexpected tag";
$tags{test_tag}{order} == 1 or die "Expected order == 1";

Future->done(1);
Future->done( 1 );
});
};

Expand Down Expand Up @@ -307,7 +307,7 @@ sub matrix_list_tags
defined $tags{test_tag} or die "Unexpected tag";
$tags{test_tag}{order} == 1 or die "Expected order == 1";

Future->done(1);
Future->done( 1 );
});
};

Expand Down Expand Up @@ -354,6 +354,6 @@ sub matrix_list_tags
defined $tags{test_tag} or die "Unexpected tag";
$tags{test_tag}{order} == 1 or die "Expected order == 1";

Future->done(1);
Future->done( 1 );
});
};

0 comments on commit eba968f

Please sign in to comment.