Index: tests/phpunit/tests/formatting/Autop.php
===================================================================
--- tests/phpunit/tests/formatting/Autop.php	(revision 30053)
+++ tests/phpunit/tests/formatting/Autop.php	(working copy)
@@ -400,4 +400,22 @@
 
 		$this->assertEquals( $expected, trim( wpautop( $content ) ) );
 	}
+	/**
+	 * wpautop() should not strip the second </p> tag
+	 *
+	 * @ticket xxxx15006
+	 */
+	function test_that_wpautop_does_not_remove_closing_p_tags() {
+		$content  = 
+'<p style="text-align: right;">Text Here</p>
+<p style="text-align: right;"></p>
+More Text Here';
+		$expected = 
+'<p style="text-align: right;">Text Here</p>
+<p style="text-align: right;"></p>
+<p>More Text Here</p>';
+
+		$this->assertEquals( $expected, trim( wpautop( $content ) ) );
+	}
+
 }
