<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">From 978e8476a9da4959ca795a29d3e96a1eb7c292f0 Mon Sep 17 00:00:00 2001
From: Slaven Rezic &lt;slaven@rezic.de&gt;
Date: Wed, 19 Nov 2014 21:27:01 +0000
Subject: [PATCH] run test suite even if connection is not possible

This should be a better fix for
https://rt.cpan.org/Ticket/Display.html?id=31823
---
 t/10connect.t |    4 ----
 1 file changed, 4 deletions(-)

diff --git a/t/10connect.t b/t/10connect.t
index 9c08e05..a2f0a0c 100644
--- a/t/10connect.t
+++ b/t/10connect.t
@@ -16,10 +16,6 @@ my $dbh;
 eval {$dbh= DBI-&gt;connect($test_dsn, $test_user, $test_password,
                       { RaiseError =&gt; 1, PrintError =&gt; 1, AutoCommit =&gt; 0 });};
 if ($@) {
-    # https://rt.cpan.org/Ticket/Display.html?id=31823
-    if ($DBI::err == 1045) {
-        Test::More::BAIL_OUT("ERROR: $DBI::errstr\nAborting remaining tests!"); 
-    }
     plan skip_all =&gt; "ERROR: $DBI::errstr $DBI::err Can't continue test";
 }
 plan tests =&gt; 2;
-- 
1.7.10.4

</pre></body></html>