summaryrefslogtreecommitdiff
path: root/ext/pgsql/tests
diff options
context:
space:
mode:
Diffstat (limited to 'ext/pgsql/tests')
-rw-r--r--ext/pgsql/tests/escape.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/pgsql/tests/escape.inc b/ext/pgsql/tests/escape.inc
index f7517952f0..7d65eb7391 100644
--- a/ext/pgsql/tests/escape.inc
+++ b/ext/pgsql/tests/escape.inc
@@ -47,10 +47,10 @@ $sql = "SELECT * FROM ".$table_name." WHERE num = -2";
$result = pg_query($db, $sql);
$row = pg_fetch_row($result, 0);
if ($data === $row['bin']) {
- echo "pg_escape_bytea actually works\n";
+ echo "pg_escape_bytea() actually works with databse\n";
}
else {
- echo "pg_escape_bytea is broken\n";
+ echo "pg_escape_bytea() is broken\n";
}
?>