summaryrefslogtreecommitdiffstats
path: root/t/001-basic.t
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2009-07-16 02:46:36 -0500
committerJesse Luehrs <doy@tozt.net>2009-07-16 02:46:36 -0500
commitf342a382bbd8471d1a74fd11030aa98557898c7e (patch)
tree00021c4157c2fb0ff7b407d2eb6e291a5d030de8 /t/001-basic.t
parent17217b22d8992f8132b707a035e3a34562ba573a (diff)
downloadapp-termcast-f342a382bbd8471d1a74fd11030aa98557898c7e.tar.gz
app-termcast-f342a382bbd8471d1a74fd11030aa98557898c7e.zip
don't double-interpolate $^X in the tests
Diffstat (limited to 't/001-basic.t')
-rw-r--r--t/001-basic.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/001-basic.t b/t/001-basic.t
index 81c7037..6ec549d 100644
--- a/t/001-basic.t
+++ b/t/001-basic.t
@@ -17,7 +17,7 @@ test_tcp(
use App::Termcast;
my \$tc = App::Termcast->new(host => '127.0.0.1', port => $port,
user => 'test', password => 'tset',
- extra_argv => ["$^X", "-e", "print 'foo'"]);
+ extra_argv => ['$^X', "-e", "print 'foo'"]);
\$tc->run;
EOF
my $pty = IO::Pty::Easy->new;