summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2007-12-20 18:48:09 +0000
committerNicholas Clark <nick@ccl4.org>2007-12-20 18:48:09 +0000
commit82c0efa4e83781652347e2d8715e3fc7441c39d4 (patch)
tree3ca2c11b3ea51e94ecfef74612ad763cd359201d
parent69f36734c100b00aa1a0212b12ebd8485f366fef (diff)
downloadperl-82c0efa4e83781652347e2d8715e3fc7441c39d4.tar.gz
The test needs to be on defined $ENV{PERL_UNICODE} because during
testing being set to an empty string has meaning. p4raw-id: //depot/perl@32674
-rw-r--r--lib/Test/Harness/t/unicode.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Test/Harness/t/unicode.t b/lib/Test/Harness/t/unicode.t
index b5b767e5ee..3a600b603c 100644
--- a/lib/Test/Harness/t/unicode.t
+++ b/lib/Test/Harness/t/unicode.t
@@ -13,7 +13,7 @@ BEGIN {
unless $] > 5.008;
plan skip_all => "PERL_UNICODE set"
- if $ENV{PERL_UNICODE};
+ if defined $ENV{PERL_UNICODE};
eval "use File::Temp";
plan skip_all => "File::Temp unavailable"