summaryrefslogtreecommitdiff
path: root/ext/pgsql/tests
diff options
context:
space:
mode:
authorYasuo Ohgaki <yohgaki@php.net>2002-01-10 06:44:02 +0000
committerYasuo Ohgaki <yohgaki@php.net>2002-01-10 06:44:02 +0000
commit7d819fc0cfc52723b7ef9d5d0c493b609b834891 (patch)
treea37e91759f1e13b7e869eaf18be5ed3945618086 /ext/pgsql/tests
parent5c0dfdbdbe2161a703b5d95d64c98f65cb1b041a (diff)
downloadphp-git-7d819fc0cfc52723b7ef9d5d0c493b609b834891.tar.gz
Fix bug in test script
Diffstat (limited to 'ext/pgsql/tests')
-rw-r--r--ext/pgsql/tests/dropdb.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pgsql/tests/dropdb.inc b/ext/pgsql/tests/dropdb.inc
index 3e80abe3cd..eaf33ae742 100644
--- a/ext/pgsql/tests/dropdb.inc
+++ b/ext/pgsql/tests/dropdb.inc
@@ -3,7 +3,7 @@
include('config.inc');
-pg_connect($conn_str);
+$db = pg_connect($conn_str);
pg_query($db, "DROP TABLE ".$table_name);
echo "OK";