From f4e63cbeceff308415346ea8ed364bbf38d64cd7 Mon Sep 17 00:00:00 2001 From: Hannes Magnusson Date: Tue, 12 Dec 2006 09:15:25 +0000 Subject: [PATCH] Fix test --- ext/pgsql/tests/02connection.phpt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/pgsql/tests/02connection.phpt b/ext/pgsql/tests/02connection.phpt index 6288d0e1796..234427ba199 100644 --- a/ext/pgsql/tests/02connection.phpt +++ b/ext/pgsql/tests/02connection.phpt @@ -29,7 +29,7 @@ if (function_exists('pg_transaction_status')) { echo "pg_transaction_status() error\n"; } } -if (!pg_host($db)) +if (false === pg_host($db)) { echo "pg_host() error\n"; }