summaryrefslogtreecommitdiffstats
path: root/t/extra-pty.t
diff options
context:
space:
mode:
Diffstat (limited to 't/extra-pty.t')
-rw-r--r--t/extra-pty.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/extra-pty.t b/t/extra-pty.t
index 97a6408..d9d73da 100644
--- a/t/extra-pty.t
+++ b/t/extra-pty.t
@@ -20,12 +20,12 @@ POSIX::mkfifo($writep, 0700)
my $script = <<SCRIPT;
use strict;
use warnings;
-use Term::Filter;
+use Term::Filter::Callback;
open my \$readfh, '<', '$readp'
or die "can't open pipe (child): \$!";
open my \$writefh, '>', '$writep'
or die "can't open pipe (child): \$!";
-my \$term = Term::Filter->new(
+my \$term = Term::Filter::Callback->new(
callbacks => {
setup => sub {
my (\$t) = \@_;