diff options
author | Nicholas Clark <nick@ccl4.org> | 2006-02-22 23:43:10 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2006-02-22 23:43:10 +0000 |
commit | bd4732242c39afc4d1e45250e9c521014d93433d (patch) | |
tree | 9712b5ae816a4d5efa92922bdc0fcf3ce659223d /t | |
parent | a4f4e9060b702ac8bd69a560b36e93c3c44a5c97 (diff) | |
download | perl-bd4732242c39afc4d1e45250e9c521014d93433d.tar.gz |
Fix typos and a missing bracket.
p4raw-id: //depot/perl@27274
Diffstat (limited to 't')
-rw-r--r-- | t/op/studytied.t | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/op/studytied.t b/t/op/studytied.t index d50c964744..f56cc171e9 100644 --- a/t/op/studytied.t +++ b/t/op/studytied.t @@ -45,6 +45,6 @@ for my $do_study qw( 0 1 ) { is( index( $x, 'n' ), 0, qq{"next" contains "n" at pos 0} ); # The letter "t" is in both, but in different positions - ok( $x =~ /t/, qq{"next" matches /x/} ); - is( index( $x, 't' ), 3, qq{"next" contains "x" at pos 3} ); + ok( $x =~ /t/, qq{"next" matches /t/} ); + is( index( $x, 't' ), 3, qq{"next" contains "t" at pos 3} ); } |