summaryrefslogtreecommitdiff
path: root/ext/pdo_mysql/tests/pdo_mysql_stmt_fetchobject.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/pdo_mysql/tests/pdo_mysql_stmt_fetchobject.phpt')
-rw-r--r--ext/pdo_mysql/tests/pdo_mysql_stmt_fetchobject.phpt10
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/pdo_mysql/tests/pdo_mysql_stmt_fetchobject.phpt b/ext/pdo_mysql/tests/pdo_mysql_stmt_fetchobject.phpt
index 31ee2a3e07..8e9e60b99e 100644
--- a/ext/pdo_mysql/tests/pdo_mysql_stmt_fetchobject.phpt
+++ b/ext/pdo_mysql/tests/pdo_mysql_stmt_fetchobject.phpt
@@ -8,14 +8,14 @@ MySQLPDOTest::skip();
$db = MySQLPDOTest::factory();
try {
- $query = "SELECT '', NULL, \"\" FROM DUAL";
- $stmt = $db->prepare($query);
- $ok = @$stmt->execute();
+ $query = "SELECT '', NULL, \"\" FROM DUAL";
+ $stmt = $db->prepare($query);
+ $ok = @$stmt->execute();
} catch (PDOException $e) {
- die("skip: Test cannot be run with SQL mode ANSI");
+ die("skip: Test cannot be run with SQL mode ANSI");
}
if (!$ok)
- die("skip: Test cannot be run with SQL mode ANSI");
+ die("skip: Test cannot be run with SQL mode ANSI");
?>
--FILE--
<?php