projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
902fde9
)
Avoid using defined @array in core tests.
Nicholas Clark [Fri, 23 Oct 2009 20:30:18 +0000 (21:30 +0100)]
ext/SDBM_File/t/sdbm.t
patch
|
blob
|
blame
|
history
diff --git
a/ext/SDBM_File/t/sdbm.t
b/ext/SDBM_File/t/sdbm.t
index
7021281
..
60423d9
100644
(file)
--- a/
ext/SDBM_File/t/sdbm.t
+++ b/
ext/SDBM_File/t/sdbm.t
@@
-155,7
+155,7
@@
print ($h{''} eq 'bar' ? "ok 12\n" : "not ok 12\n");
require Exporter ;
use SDBM_File;
@ISA=qw(SDBM_File);
- @EXPORT = @SDBM_File::EXPORT if defined @SDBM_File::EXPORT ;
+ @EXPORT = @SDBM_File::EXPORT if @SDBM_File::EXPORT ;
sub STORE {
my $self = shift ;