diff options
-rwxr-xr-x | tests/tr/Test.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/tr/Test.pm b/tests/tr/Test.pm index 0cd96a9c2..142155097 100755 --- a/tests/tr/Test.pm +++ b/tests/tr/Test.pm @@ -110,7 +110,7 @@ my @tv = ( ['repeat-0', q|abc '[b*0]'|, 'abcd', 'bbbd', 0], ['repeat-000', q|abc '[b*00000000000000000000]'|, 'abcd', 'bbbd', 0], ['repeat-compl', '-c ' . q|'[a*65536]\n' '[b*]'|, 'abcd', 'abbb', 0], -['repeat-Compl', '-C ' . q|'[a*65536]\n' '[b*]'|, 'abcd', 'abbb', 0], +['repeat-bigC', '-C ' . q|'[a*65536]\n' '[b*]'|, 'abcd', 'abbb', 0], # From Glenn Fowler. ['fowler-1', q|ah -H|, 'aha', '-H-', 0], |