From: Greg Sabino Mullane Date: Thu, 9 Apr 2009 23:11:09 +0000 (-0400) Subject: Revert bad quoting. X-Git-Tag: 2.9.0~120 X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=0f8b70080f8363f66dc3d0925be701155bf46bcf;p=check_postgres.git Revert bad quoting. --- diff --git a/t/CP_Testing.pm b/t/CP_Testing.pm index 1871972a6..ff0be5ad0 100644 --- a/t/CP_Testing.pm +++ b/t/CP_Testing.pm @@ -126,7 +126,7 @@ sub test_database_handle { } ## end of needs startup my $here = cwd(); - my $dsn = qq{dbi:Pg:host="$here/$dbdir/data/socket";dbname=postgres}; + my $dsn = qq{dbi:Pg:host=$here/$dbdir/data/socket;dbname=postgres}; my @superdsn = ($dsn, '', '', {AutoCommit=>0,RaiseError=>1,PrintError=>0}); my $dbh = DBI->connect(@superdsn); $dbh->ping() or die qq{Failed to ping!\n};