summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--shell/utils.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/utils.js b/shell/utils.js
index 8528a591407..5785fb4a987 100644
--- a/shell/utils.js
+++ b/shell/utils.js
@@ -29,7 +29,7 @@ assert.soon = function( f ) {
while( 1 ) {
if ( f() )
return;
- if ( ( new Date() ).getTime() - start.getTime() > 20000 )
+ if ( ( new Date() ).getTime() - start.getTime() > 30000 )
throw "assert.soon failed: " + f;
sleep( 200 );
}