Consolidate use's to top of file.
@oalders suggests in a comment on my pull request: > Could we move this use up to to the top of the file with the others? So I've done so here.
This commit is contained in:
parent
9045d3d511
commit
7aeeb15fcf
1 changed files with 2 additions and 1 deletions
|
@ -2,6 +2,7 @@
|
||||||
use Test::More;
|
use Test::More;
|
||||||
use strict;
|
use strict;
|
||||||
use autodie qw(:all);
|
use autodie qw(:all);
|
||||||
|
use Cwd;
|
||||||
|
|
||||||
if ( !$ENV{WPP_TEST} || !-f $ENV{WPP_TEST} ) {
|
if ( !$ENV{WPP_TEST} || !-f $ENV{WPP_TEST} ) {
|
||||||
plan skip_all =>
|
plan skip_all =>
|
||||||
|
@ -59,7 +60,7 @@ _SUBSCRIPTION_PAYMENT_DATA_
|
||||||
;
|
;
|
||||||
close(SUBSCRIPTION_PAY_HTML);
|
close(SUBSCRIPTION_PAY_HTML);
|
||||||
|
|
||||||
use Cwd; my $cwd = getcwd;
|
my $cwd = getcwd;
|
||||||
|
|
||||||
print STDERR <<"_PROFILEID_";
|
print STDERR <<"_PROFILEID_";
|
||||||
Please note the next series of tests will not succeeed unless there is at
|
Please note the next series of tests will not succeeed unless there is at
|
||||||
|
|
Loading…
Reference in a new issue