summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjluehrs2 <jluehrs2@uiuc.edu>2007-08-17 18:39:28 -0500
committerjluehrs2 <jluehrs2@uiuc.edu>2007-08-17 18:39:28 -0500
commit13d14cd5f0dfa855f035c510b49c61315f6ab6bd (patch)
tree134a188f4f39b3e639f84b70e34c5089d6570954
parent78edd167ace617f4647701e70b79e32f1cbd2ab0 (diff)
downloadio-pty-easy-13d14cd5f0dfa855f035c510b49c61315f6ab6bd.tar.gz
io-pty-easy-13d14cd5f0dfa855f035c510b49c61315f6ab6bd.zip
missed some PTY->pty changes
-rw-r--r--t/003-subprocess.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/003-subprocess.t b/t/003-subprocess.t
index edc9b09..d13c8b7 100644
--- a/t/003-subprocess.t
+++ b/t/003-subprocess.t
@@ -8,7 +8,7 @@ my $pty = new IO::Pty::Easy;
my $script = "$^X -e '-t *STDIN && -t *STDOUT && print \"ok\";'";
my $outside_of_pty = `$script`;
-unlike($outside_of_pty, qr/ok/, "running outside of PTY fails -t checks");
+unlike($outside_of_pty, qr/ok/, "running outside of pty fails -t checks");
$pty->spawn("$script");
-like($pty->read, qr/ok/, "runs subprocess in a PTY");
+like($pty->read, qr/ok/, "runs subprocess in a pty");