Remove failing shortcode unit tests

Test added to #14050 in case we want to include it in a future fix.

see #30284



git-svn-id: https://develop.svn.wordpress.org/trunk@30290 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Aaron Jorbin 2014-11-08 22:50:30 +00:00
parent e7e27c2e4d
commit 44825185f7
1 changed files with 0 additions and 10 deletions

View File

@ -307,16 +307,6 @@ EOF;
$this->assertEquals( $test_string, shortcode_unautop( wpautop( $test_string ) ) );
}
/**
* @ticket 14050
*/
function test_multiple_shortcode_unautop() {
// a blank line is added at the end, so test with it already there
$test_string = "[footag]\n[footag]\n";
$actual = shortcode_unautop( wpautop( $test_string ) );
$this->assertEquals( $test_string, $actual );
}
/**
* @ticket 10326
*/