diff options
author | Nicholas Clark <nick@ccl4.org> | 2009-10-23 21:29:49 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2009-10-23 22:07:06 +0100 |
commit | 902fde96768bb39d4175218f674fe7b3c162dddd (patch) | |
tree | 609b64405f3374ff463bb984a53f88ca54113553 /t | |
parent | 09a3950ca54c536fb488a12c7d11f935e18e02d0 (diff) | |
download | perl-902fde96768bb39d4175218f674fe7b3c162dddd.tar.gz |
Avoid using defined %hash in core code and tests.
Diffstat (limited to 't')
-rw-r--r-- | t/op/magic.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/op/magic.t b/t/op/magic.t index 6e3da5381c..975be11bb3 100644 --- a/t/op/magic.t +++ b/t/op/magic.t @@ -382,7 +382,7 @@ SKIP: { ok scalar eval q{ %!; - defined %Errno::; + scalar %Errno::; }, $@; } |