Skip to content

Commit

Permalink
Fix a tyop.
Browse files Browse the repository at this point in the history
  • Loading branch information
jnthn committed Oct 5, 2014
1 parent ac5e8d4 commit 18fc4b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion S19-command-line/repl.t
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use Test;
plan 1;

# Sanity check that the repl is working at all.
my $cmd = $*DISTRO-is-win
my $cmd = $*DISTRO.is-win
?? "echo exit(42) | $*EXECUTABLE 1>&2"
!! "echo 'exit(42)' | $*EXECUTABLE 1>&2";
is shell($cmd).exit, 42, 'exit(42) in executed REPL got run';

0 comments on commit 18fc4b8

Please sign in to comment.