summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey Hristov <andrey@php.net>2011-12-14 17:59:11 +0000
committerAndrey Hristov <andrey@php.net>2011-12-14 17:59:11 +0000
commit8a65304a015873db6d03b579ea3a5f2ba2f85fa1 (patch)
treef4098b2c50d0e88aa7ef18419bf39adaafd1e79b
parent83841052e0304c49e0fc52b48854c35624dbb6df (diff)
downloadphp-git-8a65304a015873db6d03b579ea3a5f2ba2f85fa1.tar.gz
fix typo
-rw-r--r--ext/mysqli/tests/mysqli_poll_kill.phpt2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mysqli/tests/mysqli_poll_kill.phpt b/ext/mysqli/tests/mysqli_poll_kill.phpt
index 3ee863f433..b068d64e8f 100644
--- a/ext/mysqli/tests/mysqli_poll_kill.phpt
+++ b/ext/mysqli/tests/mysqli_poll_kill.phpt
@@ -25,7 +25,7 @@ if (!$IS_MYSQLND)
// Killing connection - 1
$link = get_connection();
- if (true !== ($tmp = mysqli_query($link, "SELECT 1 AS 'processed beofre killed'", MYSQLI_ASYNC | MYSQLI_USE_RESULT)))
+ if (true !== ($tmp = mysqli_query($link, "SELECT 1 AS 'processed before killed'", MYSQLI_ASYNC | MYSQLI_USE_RESULT)))
printf("[002] Expecting boolean/true got %s/%s\n", gettype($tmp), var_export($tmp, true));
// Sleep 0.1s - the asynchronous query should have been processed after the wait period