diff options
Diffstat (limited to 'ext/pgsql/tests')
| -rw-r--r-- | ext/pgsql/tests/17result.phpt | 2 | ||||
| -rw-r--r-- | ext/pgsql/tests/22pg_fetch_object.phpt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/pgsql/tests/17result.phpt b/ext/pgsql/tests/17result.phpt index c3f9959aa2..4e321ca3f8 100644 --- a/ext/pgsql/tests/17result.phpt +++ b/ext/pgsql/tests/17result.phpt @@ -11,7 +11,7 @@ include 'config.inc'; $db = pg_connect($conn_str); $sql = "SELECT * FROM $table_name"; -$result = pg_query($db, $sql) or die('Cannot qeury db'); +$result = pg_query($db, $sql) or die('Cannot query db'); $rows = pg_num_rows($result); var_dump(pg_result_seek($result, 1)); diff --git a/ext/pgsql/tests/22pg_fetch_object.phpt b/ext/pgsql/tests/22pg_fetch_object.phpt index 76a3fbeed3..ebdf77568e 100644 --- a/ext/pgsql/tests/22pg_fetch_object.phpt +++ b/ext/pgsql/tests/22pg_fetch_object.phpt @@ -17,7 +17,7 @@ class test_class { $db = pg_connect($conn_str); $sql = "SELECT * FROM $table_name WHERE num = 0"; -$result = pg_query($db, $sql) or die('Cannot qeury db'); +$result = pg_query($db, $sql) or die('Cannot query db'); $rows = pg_num_rows($result); var_dump(pg_fetch_object($result, NULL, 'test_class', array(1, 2))); |
