Index: /CKEditor/trunk/_source/tests/plugins/list/list.html
===================================================================
--- /CKEditor/trunk/_source/tests/plugins/list/list.html	(revision 4037)
+++ /CKEditor/trunk/_source/tests/plugins/list/list.html	(revision 4038)
@@ -176,19 +176,22 @@
 						this.resume( function()
 						{
-							editor.focus();
-
-							var doc = editor.document,
-								range = new CKEDITOR.dom.range( doc );
-							setRange( range, [ 1, 1, 0, 0 ], [ 1, 1, 1, 1 ] );
-							var sel = editor.getSelection();
-							sel.selectRanges( [ range ] );
-
-							// Waiting for 'comand state' effected.
-							this.wait( function(){
-								// Remove list.
-								editor.execCommand( 'bulletedlist' );
-								assert.areSame( getTextAreaValue( 'test_ticket_3836_result' ),
-									editor.getData(),
-									'Remove list result not correct.' );
+							this.wait( function ()
+							{
+								editor.focus();
+
+								var doc = editor.document,
+									range = new CKEDITOR.dom.range( doc );
+								setRange( range, [ 1, 1, 0, 0 ], [ 1, 1, 1, 1 ] );
+								var sel = editor.getSelection();
+								sel.selectRanges( [ range ] );
+
+								// Waiting for 'comand state' effected.
+								this.wait( function(){
+									// Remove list.
+									editor.execCommand( 'bulletedlist' );
+									assert.areSame( getTextAreaValue( 'test_ticket_3836_result' ),
+										editor.getData(),
+										'Remove list result not correct.' );
+								}, 1000 );
 							}, 1000 );
 
