Index: /CKEditor/tests/tt/5626/1.html
===================================================================
--- /CKEditor/tests/tt/5626/1.html	(revision 5988)
+++ /CKEditor/tests/tt/5626/1.html	(revision 5989)
@@ -27,15 +27,15 @@
 	return {
 
-		// We should leave partial list structure as is just like browsers, instead of trying to fix it. (#5626)
+		// We should fix partial list structure as unordered list. (#5626)
 		test_partial_list_in_table : function()
 		{
-			testParser(	'<table><tr><td><li>item1</li></td></tr></table>',
-						'<table><tr><td><li>item1</li></td></tr></table>' );
+			testParser(	'<table><tr><td><li>item1</li><li>item2</li></td></tr></table>',
+						'<table><tr><td><ul><li>item1</li><li>item2</li></ul></td></tr></table>' );
 		},
 
 		test_partial_list_in_body : function()
 		{
-			testParser(	'<body><td>cell</td></body>',
-						'<body><td>cell</td></body>' );
+			testParser(	'<body>text<li>cell</li></body>',
+						'<body><p>text</p><ul><li>cell</li></ul></body>' );
 		},
 
