diff options
| author | Ilia Alshanetsky <iliaa@php.net> | 2003-02-15 17:06:35 +0000 |
|---|---|---|
| committer | Ilia Alshanetsky <iliaa@php.net> | 2003-02-15 17:06:35 +0000 |
| commit | 8a07cc45cfb3cfad38a65f027e59b2e1d02f091e (patch) | |
| tree | ac0362745c9390d4a02b915f164d5ee179d20b72 | |
| parent | e671a8c3e4dbf48b8ec56ccf92d796952f337629 (diff) | |
| download | php-git-8a07cc45cfb3cfad38a65f027e59b2e1d02f091e.tar.gz | |
Fixed skip condition.
| -rw-r--r-- | ext/mysqli/tests/014.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mysqli/tests/014.phpt b/ext/mysqli/tests/014.phpt index b1c916ecf3..7e1771fcaa 100644 --- a/ext/mysqli/tests/014.phpt +++ b/ext/mysqli/tests/014.phpt @@ -9,7 +9,7 @@ mysqli autocommit/commit/rollback mysqli_free_result($result); mysqli_close($link); - if ($row[1] == "NO") { + if ($row[1] == "DISABLED") { printf ("skip innodb support not installed."); } ?> |
