Subject: | t/SOAP/Transport/HTTP/CGI.t failing on 5.6.x |
The eval { use bytes; } at L63 doesn't propogate to L64, where it's
needed. Hence the test fails ("got 7, expected 8").
This patch fixes it:
63,65c63,67
< eval { use bytes };
< is length $result, 8, "lenght of >$result< is 8 due to wide
character";
< }---
Show quoted text
> eval {
> use bytes;
> is length $result, 8, "lenght of >$result< is 8 due to wide
character";
Show quoted text> }
> }