Make WordPress Core

Changeset 30519


Ignore:
Timestamp:
11/22/2014 08:25:03 PM (12 years ago)
Author:
boonebgorges
Message:

Remove failing test in the hooks group.

The removed test has been added as a patch to #21169.

Props MikeHansenMe.
See #30284.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/filters.php

    r29665 r30519  
    252252
    253253        /**
    254          * @ticket 21169
    255          */
    256         function test_filter_removal_during_filter() {
    257                 $tag = rand_str();
    258                 $a = new MockAction();
    259                 $b = new MockAction();
    260 
    261                 add_action( $tag, array($a, 'filter_append'), 11, 1 );
    262                 add_action( $tag, array($b, 'filter_append'), 12, 1 );
    263                 add_action( $tag, array($this, '_self_removal'), 10, 1 );
    264 
    265                 $result = apply_filters($tag, $tag);
    266                 $this->assertEquals( 1, $a->get_call_count(), 'priority 11 filters should run after priority 10 empties itself' );
    267                 $this->assertEquals( 1, $b->get_call_count(), 'priority 12 filters should run after priority 10 empties itself and priority 11 runs' );
    268                 $this->assertEquals( $result, $tag . '_append_append', 'priority 11 and 12 filters should run after priority 10 empties itself' );
    269         }
    270 
    271         /**
    272254         * @ticket 29070
    273255         */
Note: See TracChangeset for help on using the changeset viewer.