summaryrefslogtreecommitdiff
path: root/ext/pdo_mysql/tests/bug_42499.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/pdo_mysql/tests/bug_42499.phpt')
-rw-r--r--ext/pdo_mysql/tests/bug_42499.phpt6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/pdo_mysql/tests/bug_42499.phpt b/ext/pdo_mysql/tests/bug_42499.phpt
index 4ad38eeca2..7824448c07 100644
--- a/ext/pdo_mysql/tests/bug_42499.phpt
+++ b/ext/pdo_mysql/tests/bug_42499.phpt
@@ -13,12 +13,12 @@ $stmt = $db->query('SELECT VERSION() as _version');
$row = $stmt->fetch(PDO::FETCH_ASSOC);
$matches = array();
if (!preg_match('/^(\d+)\.(\d+)\.(\d+)/ismU', $row['_version'], $matches))
- die(sprintf("skip Cannot determine MySQL Server version\n"));
+ die(sprintf("skip Cannot determine MySQL Server version\n"));
$version = $matches[1] * 10000 + $matches[2] * 100 + $matches[3];
if ($version < 41000)
- die(sprintf("skip Need MySQL Server 4.1.0+, found %d.%02d.%02d (%d)\n",
- $matches[1], $matches[2], $matches[3], $version));
+ die(sprintf("skip Need MySQL Server 4.1.0+, found %d.%02d.%02d (%d)\n",
+ $matches[1], $matches[2], $matches[3], $version));
--FILE--
<?php
require_once(__DIR__ . DIRECTORY_SEPARATOR . 'mysql_pdo_test.inc');