diff --git a/mysql-test/r/information_schema.result b/mysql-test/r/information_schema.result
index bf09258efe967b1d997c7edc7c4b30428a9c1d6a..65378b62521e5ba9ce5ce701ee99fbf52e964dee 100644
--- a/mysql-test/r/information_schema.result
+++ b/mysql-test/r/information_schema.result
@@ -1385,7 +1385,7 @@ who
 other connection here
 SELECT IF(`time` > 0, 'OK', `time`) AS time_low,
 IF(`time` < 1000, 'OK', `time`) AS time_high,
-IF(time_ms > 900, 'OK', time_ms) AS time_ms_low,
+IF(time_ms > 1500, 'OK', time_ms) AS time_ms_low,
 IF(time_ms < 1000000, 'OK', time_ms) AS time_ms_high
 FROM INFORMATION_SCHEMA.PROCESSLIST
 WHERE ID=@tid;
diff --git a/mysql-test/t/information_schema.test b/mysql-test/t/information_schema.test
index a19d97ffeb25f756131c42ec8f7f6573b90587ea..aa9915bf5c90a958993837bca8eb610fbc7dc7e6 100644
--- a/mysql-test/t/information_schema.test
+++ b/mysql-test/t/information_schema.test
@@ -1105,13 +1105,13 @@ connect (pslistcon,localhost,root,,test);
 let $ID= `select connection_id()`;
 SELECT 'other connection here' AS who;
 connection default;
-sleep 1;
+sleep 2;
 --disable_query_log
 eval SET @tid=$ID;
 --enable_query_log
 SELECT IF(`time` > 0, 'OK', `time`) AS time_low,
        IF(`time` < 1000, 'OK', `time`) AS time_high,
-       IF(time_ms > 900, 'OK', time_ms) AS time_ms_low,
+       IF(time_ms > 1500, 'OK', time_ms) AS time_ms_low,
        IF(time_ms < 1000000, 'OK', time_ms) AS time_ms_high
   FROM INFORMATION_SCHEMA.PROCESSLIST
  WHERE ID=@tid;