Make WordPress Core

Changeset 1148 in tests for trunk/tests/post/query.php


Ignore:
Timestamp:
11/21/2012 03:01:28 PM (13 years ago)
Author:
ryan
Message:

Pinking shears and eol-style

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/post/query.php

    r1138 r1148  
    224224            'operator' => 'IN'
    225225        )
    226         )   
     226        )
    227227    ) );
    228228
     
    242242    $post_id5 = $this->factory->post->create();
    243243    add_post_meta( $post_id5, 'time', 1000 );
    244    
     244
    245245    $args = array(
    246246        'meta_key' => 'time',
     
    258258    $posts = wp_list_pluck( $query->posts, 'ID' );
    259259    $this->assertEqualSets( array( $post_id2, $post_id3 ), $posts );
    260    
     260
    261261    $args = array(
    262262        'meta_key' => 'time',
     
    429429                    'terms' => array( $cat_a ),
    430430                )
    431             )   
     431            )
    432432        ) );
    433433
     
    442442                    'include_children' => false
    443443                )
    444             )   
     444            )
    445445        ) );
    446446
     
    454454                    'terms' => array( $cat_b ),
    455455                )
    456             )   
     456            )
    457457        ) );
    458458
     
    467467                    'include_children' => false
    468468                )
    469             )   
     469            )
    470470        ) );
    471471
     
    479479                    'terms' => array( $cat_c ),
    480480                )
    481             )   
     481            )
    482482        ) );
    483483
     
    492492                    'include_children' => false
    493493                )
    494             )   
     494            )
    495495        ) );
    496496
Note: See TracChangeset for help on using the changeset viewer.