Skip to content

Commit 7d538cf

Browse files
author
Yasuo Ohgaki
committed
Fixed test bug
1 parent 24288eb commit 7d538cf

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

ext/pgsql/tests/80_bug32223b.phpt

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@ begin
3737
end;
3838
' LANGUAGE plpgsql;");
3939

40-
$res = pg_query($dbh, 'SET client_min_messages TO NOTICE;');
40+
$res = pg_query(dbh, 'SET client_min_messages TO NOTICE;');
4141
var_dump($res);
4242

4343
function tester() {
4444
$res = pg_query(dbh, 'SELECT test_notice()');
4545
$row = pg_fetch_row($res, 0);
46-
var_dump($row);
46+
var_dump($row);
4747
pg_free_result($res);
4848
if ($row[0] == 'f')
4949
{
@@ -58,7 +58,6 @@ pg_close(dbh);
5858
===DONE===
5959
--EXPECTF--
6060
resource(%d) of type (pgsql result)
61-
resource(%d) of type (pgsql result)
6261
array(1) {
6362
[0]=>
6463
string(1) "f"

0 commit comments

Comments
 (0)