projects
/
dbsrgits/SQL-Abstract.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
31a41fd
)
Fix eq_bind checker
Arthur Axel 'fREW' Schmidt [Sat, 28 Jul 2012 17:37:25 +0000 (12:37 -0500)]
We have to Deepcopy because otherwise we get $VAR->... incorrect failures
lib/SQL/Abstract/Test.pm
patch
|
blob
|
blame
|
history
diff --git
a/lib/SQL/Abstract/Test.pm
b/lib/SQL/Abstract/Test.pm
index
2bc681e
..
119edd4
100644
(file)
--- a/
lib/SQL/Abstract/Test.pm
+++ b/
lib/SQL/Abstract/Test.pm
@@
-107,6
+107,7
@@
sub eq_bind {
local $Data::Dumper::Useqq = 1;
local $Data::Dumper::Sortkeys = 1;
+ local $Data::Dumper::Deepcopy = 1;
return Dumper($bind_ref1) eq Dumper($bind_ref2);
}