diff options
author | Ronald J. Kimball <rjk@linguist.dartmouth.edu> | 2001-10-08 18:18:23 -0400 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-10-09 01:23:08 +0000 |
commit | c212f17ff77261a4792bfbd46a1471e8c17417e0 (patch) | |
tree | bc63ecd0dad4343fa55889420623386383c602d9 /t/op/taint.t | |
parent | bc06af7496abc68809dea149d963eea3f2e007f9 (diff) | |
download | perl-c212f17ff77261a4792bfbd46a1471e8c17417e0.tar.gz |
Re: [PATCH mg.c gv.c and others] ${^TAINT}
Message-ID: <20011008221823.A413700@linguist.thayer.dartmouth.edu>
p4raw-id: //depot/perl@12370
Diffstat (limited to 't/op/taint.t')
-rwxr-xr-x | t/op/taint.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/op/taint.t b/t/op/taint.t index d010afea99..4e75c54d26 100755 --- a/t/op/taint.t +++ b/t/op/taint.t @@ -904,5 +904,5 @@ ok( ${^TAINT}, '$^TAINT is on' ); eval { ${^TAINT} = 0 }; ok( ${^TAINT}, '$^TAINT is not assignable' ); ok( $@ =~ /^Modification of a read-only value attempted/, - 'Assigning to taint pukes properly' ); + 'Assigning to ${^TAINT} fails' ); |