Make WordPress Core

Ticket #14050: 14050.diff

File 14050.diff, 615 bytes (added by jorbin, 9 years ago)

Unit test removed as a part of #30284

  • tests/phpunit/tests/shortcode.php

     
    308308        }
    309309
    310310        /**
     311         * @ticket 14050
     312         */
     313        function test_multiple_shortcode_unautop() {
     314                // a blank line is added at the end, so test with it already there
     315                $test_string = "[footag]\n[footag]\n";
     316                $actual = shortcode_unautop( wpautop( $test_string ) );
     317                $this->assertEquals( $test_string, $actual );
     318        }
     319
     320        /**
    311321         * @ticket 10326
    312322         */
    313323        function test_strip_shortcodes() {