Index: /CKEditor/branches/prototype/_source/tests/core/tools.html
===================================================================
--- /CKEditor/branches/prototype/_source/tests/core/tools.html	(revision 2148)
+++ /CKEditor/branches/prototype/_source/tests/core/tools.html	(revision 2149)
@@ -63,41 +63,4 @@
 		},
 
-		test_each1 : function()
-		{
-			var source = [ 'T', 10, function(){}, [], {}, null ];
-			var target = [];
-
-			CKEDITOR.tools.each ( source, function( value, index )
-				{
-					target[index] = value;
-				} );
-
-			for ( var i = 0 ; i < source.length ; i++ )
-				assert.areSame( source[i], target[i], 'Index ' + i + ' doesn\'t match' );
-
-			assert.areEqual( source.length, target.length, 'Different lengths' );
-			assert.areNotEqual( source, target, 'Different arrays are expected' );
-		},
-
-		test_each2 : function()
-		{
-			var source = { a : 'T', b : 10, c : function(){}, d : [], e : {}, f : null };
-			var target = {};
-
-			CKEDITOR.tools.each ( source, function( value, name )
-				{
-					target[name] = value;
-				} );
-
-			assert.areSame( source.a, target.a, 'Property "a" doesn\'t match' );
-			assert.areSame( source.b, target.b, 'Property "b" doesn\'t match' );
-			assert.areSame( source.c, target.c, 'Property "c" doesn\'t match' );
-			assert.areSame( source.d, target.d, 'Property "d" doesn\'t match' );
-			assert.areSame( source.e, target.e, 'Property "e" doesn\'t match' );
-			assert.areSame( source.f, target.f, 'Property "f" doesn\'t match' );
-
-			assert.areNotEqual( source, target, 'Different objects are expected' );
-		},
-
 		name : document.title
 	};
