diff options
Diffstat (limited to 't/base/term.t')
-rwxr-xr-x | t/base/term.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/base/term.t b/t/base/term.t index 000bff1b15..2d3fe5a5e1 100755 --- a/t/base/term.t +++ b/t/base/term.t @@ -19,7 +19,7 @@ else {print "not ok 1\n";} # check `` processing -$x = `echo hi there`; +$x = `$^X -le "print 'hi there'"`; if ($x eq "hi there\n") {print "ok 2\n";} else {print "not ok 2\n";} # check $#array |