Skip to content

Commit

Permalink
Merge pull request #524 from rspier/spew
Browse files Browse the repository at this point in the history
Fix warning about spurt
  • Loading branch information
rspier committed May 20, 2024
2 parents 3b63c16 + 60fef98 commit e15e29e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions t/pause_2017/action/add_uri.t
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ subtest 'get: user with subdirs' => sub {
my $user_home = $PAUSE::Config->{MLROOT}."/".PAUSE::user2dir($user);
my $subdir = path("$user_home/test");
$subdir->make_path;
$subdir->child("stuff.txt")->spurt("Foo");
$subdir->child("stuff.txt")->spew("Foo");

my $t = Test::PAUSE::Web->new(user => $user);
$t->get_ok("$path?ACTION=add_uri");
Expand Down Expand Up @@ -103,7 +103,7 @@ subtest 'post: under a Perl6 subdir' => sub {
my $user_home = $PAUSE::Config->{MLROOT}."/".PAUSE::user2dir($user);
my $subdir = path("$user_home/Perl6");
$subdir->make_path;
$subdir->child("stuff.txt")->spurt("Foo");
$subdir->child("stuff.txt")->spew("Foo");

my $file = $PAUSE::Config->{INCOMING_LOC}."/".$form{pause99_add_uri_httpupload}[1];
ok !-f $file, "file to upload does not exist";
Expand Down

0 comments on commit e15e29e

Please sign in to comment.