Make WordPress Core

Ticket #30284: 18897-remove.diff

File 18897-remove.diff, 913 bytes (added by MikeHansenMe, 10 years ago)

#18897

  • tests/phpunit/tests/query/results.php

    diff --git a/tests/phpunit/tests/query/results.php b/tests/phpunit/tests/query/results.php
    index f65afdf..46a7a9b 100644
    a b class Tests_Query_Results extends WP_UnitTestCase { 
    279279        }
    280280
    281281        /**
    282          * @ticket 18897
    283          */
    284         function test_query_offset_and_paged() {
    285                 $posts = $this->q->query('paged=2&offset=3');
    286 
    287                 $expected = array (
    288                         0 => 'many-trackbacks',
    289                         1 => 'one-trackback',
    290                         2 => 'comment-test',
    291                         3 => 'lorem-ipsum',
    292                         4 => 'cat-c',
    293                         5 => 'cat-b',
    294                         6 => 'cat-a',
    295                         7 => 'cats-a-and-c',
    296                         8 => 'cats-b-and-c',
    297                         9 => 'cats-a-and-b',
    298                 );
    299 
    300                 $this->assertCount( 10, $posts );
    301                 $this->assertTrue( $this->q->is_paged() );
    302                 $this->assertEquals( $expected, wp_list_pluck( $posts, 'post_name' ) );
    303         }
    304 
    305         /**
    306282         * @ticket 11056
    307283         */
    308284        function test_query_post_parent__in() {