diff options
author | Xinchen Hui <laruence@gmail.com> | 2016-05-12 13:40:32 +0800 |
---|---|---|
committer | Xinchen Hui <laruence@gmail.com> | 2016-05-12 13:40:32 +0800 |
commit | 28f35c179913b38587b05205528abd996e5d4256 (patch) | |
tree | 197c11b0252bdc3bf8f8a43d43ad0f7d30bd74ab /ext/pgsql/tests | |
parent | 8fd92e05182b068c2ad7ed7b271368f53e379891 (diff) | |
parent | 92828ae204268d98913eb7392a767abab4bb68bf (diff) | |
download | php-git-28f35c179913b38587b05205528abd996e5d4256.tar.gz |
Merge branch 'PHP-7.0'
* PHP-7.0:
Committed by accident
Diffstat (limited to 'ext/pgsql/tests')
-rw-r--r-- | ext/pgsql/tests/config.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pgsql/tests/config.inc b/ext/pgsql/tests/config.inc index 7be1e242ad..e9944de793 100644 --- a/ext/pgsql/tests/config.inc +++ b/ext/pgsql/tests/config.inc @@ -5,7 +5,7 @@ // environment var PGSQL_TEST_CONNSTR // "test" database must exist. i.e. "createdb test" before testing -$conn_str = getenv('PGSQL_TEST_CONNSTR') ?: "host=localhost dbname=test port=5432 user=postgres password=postgres"; // connection string +$conn_str = getenv('PGSQL_TEST_CONNSTR') ?: "host=localhost dbname=test port=5432"; // connection string $table_name = "php_pgsql_test"; // test table that will be created $table_name_92 = "php_pgsql_test_92"; // test table that will be created |