diff options
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} ); } |