From 44825185f7da089d8d798dfd41c2e561d17881f2 Mon Sep 17 00:00:00 2001 From: Aaron Jorbin Date: Sat, 8 Nov 2014 22:50:30 +0000 Subject: [PATCH] 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 --- tests/phpunit/tests/shortcode.php | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/tests/phpunit/tests/shortcode.php b/tests/phpunit/tests/shortcode.php index 7e8b97188a..2a966bf15d 100644 --- a/tests/phpunit/tests/shortcode.php +++ b/tests/phpunit/tests/shortcode.php @@ -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 */