about summary refs log tree commit homepage
path: root/t
diff options
context:
space:
mode:
Diffstat (limited to 't')
-rw-r--r--t/httpd-corner.t2
-rw-r--r--t/import.t7
2 files changed, 4 insertions, 5 deletions
diff --git a/t/httpd-corner.t b/t/httpd-corner.t
index 1f2bb53f..879a023a 100644
--- a/t/httpd-corner.t
+++ b/t/httpd-corner.t
@@ -278,7 +278,7 @@ SKIP: {
         waitpid($pid, 0);
         is($?, 0, 'curl exited successfully');
         is(-s $cerr, 0, 'no errors from curl');
-        $cout->seek(0, SEEK_SET);
+        seek($cout, 0, SEEK_SET);
         is(<$cout>, sha1_hex($str), 'read expected body');
 
         open my $fh, '-|', qw(curl -sS), "$base/async-big" or die $!;
diff --git a/t/import.t b/t/import.t
index cfbe501b..ecf2c590 100644
--- a/t/import.t
+++ b/t/import.t
@@ -7,8 +7,7 @@ use PublicInbox::MIME;
 use PublicInbox::Git;
 use PublicInbox::Import;
 use PublicInbox::Spawn qw(spawn);
-use IO::File;
-use Fcntl qw(:DEFAULT);
+use Fcntl qw(:DEFAULT SEEK_SET);
 use File::Temp qw/tempfile/;
 use PublicInbox::TestCommon;
 my ($dir, $for_destroy) = tmpdir();
@@ -42,12 +41,12 @@ if ($v2) {
         my $in = tempfile();
         print $in $mime->as_string or die "write failed: $!";
         $in->flush or die "flush failed: $!";
-        $in->seek(0, SEEK_SET);
+        seek($in, 0, SEEK_SET);
         my $out = tempfile();
         my $pid = spawn(\@cmd, {}, { 0 => $in, 1 => $out });
         is(waitpid($pid, 0), $pid, 'waitpid succeeds on hash-object');
         is($?, 0, 'hash-object');
-        $out->seek(0, SEEK_SET);
+        seek($out, 0, SEEK_SET);
         chomp(my $hashed_obj = <$out>);
         is($hashed_obj, $info->[0], "last object_id matches exp");
 }