Index: /CKEditor/tests/tt/4242/4242.html
===================================================================
--- /CKEditor/tests/tt/4242/4242.html	(revision 4122)
+++ /CKEditor/tests/tt/4242/4242.html	(revision 4123)
@@ -7,6 +7,5 @@
 	<script type="text/javascript">
 	//<![CDATA[
-
-CKEDITOR.test.addTestCase( ( function()
+	CKEDITOR.test.addTestCase( ( function()
 	{
 
@@ -16,22 +15,29 @@
 		return	{
 
-			_should :
+			// This test should be ignored.
+			test_ignored1 : function()
 			{
-				ignoreAllBut : 'test_not_ignored'
+				assert.fail();
+			},
+			// This test should be ignored.
+			test_ignored2 : function()
+			{
+				assert.fail();
 			},
 
-			test_ignored1 : function()
-			{
-				// This test should not ignored.
-				assert.fail();
-			},
-			test_ignored2 : function()
-			{
-				// This test should not ignored.
-				assert.fail();
-			},
+			// This test should be failed.
 			test_not_ignored : function()
 			{
+				CKEditorError1;
 			},
+
+			// This test should be failed and throw an error.
+			test_not_ignored_and_throws : function()
+			{
+				CKEditorError2;
+			},
+
+			ignoreAllBut : { 'test_not_ignored' : 1, 'test_not_ignored_and_throws' : 1 },
+			throws : { 'test_not_ignored_and_throws' : 1 },
 			name :document.title
 		};
