Committed by Greg Sabino Mullane <[email protected]>
Be less precise in testing match: suspect the UTF-8 "fancy
quotes" may be causing the test failure seen on that German BSD box via CPAN
testers.
---
t/dbdpg_test_setup.pl | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/t/dbdpg_test_setup.pl b/t/dbdpg_test_setup.pl
index 070055b..899a313 100644
--- a/t/dbdpg_test_setup.pl
+++ b/t/dbdpg_test_setup.pl
@@ -117,7 +117,7 @@ version: $version
1;
};
- if ($@ =~ /invalid connection option/ or $@ =~ /"dbbarf"/) {
+ if ($@ =~ /invalid connection option/ or $@ =~ /dbbarf/) {
return $helpconnect, $@, undef;
}
--
1.8.4