diff options
author | Father Chrysostomos <sprout@cpan.org> | 2010-11-14 11:06:48 -0800 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2010-11-14 11:07:14 -0800 |
commit | ab10b0e54487cf5ebc79f00d7b6dbb47485520a3 (patch) | |
tree | e248349e49977a44453b50a27b25a52719b383dd /lib/utf8.t | |
parent | a5dba54a9086e4f54e3755d7ba6f357c8b6cecb8 (diff) | |
download | perl-ab10b0e54487cf5ebc79f00d7b6dbb47485520a3.tar.gz |
Change utf8.t to use a \xb7 delimiter once more.
This partially reverts 7b301413.
The delimiter was changed because a proposed fix for [perl #74022]
would have caused the test to fail.
That bug has been fixed a different way (d7425188), so the delimiter
in the test can be changed back.
The RT ticket has more detail.
Diffstat (limited to 'lib/utf8.t')
-rw-r--r-- | lib/utf8.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/utf8.t b/lib/utf8.t index c13211eed1..f98052c29b 100644 --- a/lib/utf8.t +++ b/lib/utf8.t @@ -329,7 +329,7 @@ END SKIP: { skip("Embedded UTF-8 does not work in EBCDIC", 1) if ord("A") == 193; use utf8; - is eval qq{q \xc3\xbc test \xc3\xbc . qq\xc2\xa1 test \xc2\xa1}, + is eval qq{q \xc3\xbc test \xc3\xbc . qq\xc2\xb7 test \xc2\xb7}, ' test test ', "utf8 quote delimiters [perl #16823]"; } |