Skip to:
Content

bbPress.org


Ignore:
Timestamp:
08/08/2015 07:13:21 AM (9 years ago)
Author:
netweb
Message:

Tests: If we add filters in tests, we need to also remove them for WordPress < 4.0 compatability

Props thebrandonallen. See #2845

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/testcases/replies/template/reply.php

    r5894 r5896  
    143143        $this->assertSame( $reply_url, bbp_get_reply_url( $r[6] ) );
    144144
     145        // Remove the filter for WordPress < 4.0 compatibility.
     146        remove_filter( 'bbp_show_lead_topic', '__return_true' );
     147
    145148        // Reply menu position is bumped by 1 when bbp_show_lead_topic() false.
    146149        add_filter( 'bbp_show_lead_topic', '__return_false' );
     
    173176        $reply_url = bbp_get_topic_permalink( $t ) . '&paged=3#post-' . bbp_get_reply_id( $r[6] );
    174177        $this->assertSame( $reply_url, bbp_get_reply_url( $r[6] ) );
     178
     179        // Remove the filter for WordPress < 4.0 compatibility.
     180        remove_filter( 'bbp_show_lead_topic', '__return_false' );
    175181
    176182        // Restore the original reply pagination option value.
     
    537543        $this->assertSame( 4, $position );
    538544
     545        // Remove the filter for WordPress < 4.0 compatibility.
     546        remove_filter( 'bbp_show_lead_topic', '__return_true' );
     547
    539548        // Reply menu position is bumped by 1 when bbp_show_lead_topic() false.
    540549        add_filter( 'bbp_show_lead_topic', '__return_false' );
     
    563572        $position = bbp_get_reply_position( $r[3] );
    564573        $this->assertSame( 5, $position );
     574
     575        // Remove the filter for WordPress < 4.0 compatibility.
     576        remove_filter( 'bbp_show_lead_topic', '__return_false' );
    565577    }
    566578
Note: See TracChangeset for help on using the changeset viewer.