Make WordPress Core

Changeset 28647


Ignore:
Timestamp:
06/01/2014 03:17:16 AM (12 years ago)
Author:
SergeyBiryukov
Message:

Capitalize 'ID' correctly to avoid random failures of Tests_Tax_Query::test_term_taxonomy_id_field_no_taxonomy().

see #25284.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/term/query.php

    r28562 r28647  
    159159        $results1 = $this->q->query( array(
    160160            'fields' => 'ids',
    161             'orderby' => 'id',
     161            'orderby' => 'ID',
    162162            'order' => 'ASC',
    163163            'tax_query' => array(
     
    182182        $results2 = $this->q->query( array(
    183183            'fields' => 'ids',
    184             'orderby' => 'id',
     184            'orderby' => 'ID',
    185185            'order' => 'ASC',
    186186            'tax_query' => array(
Note: See TracChangeset for help on using the changeset viewer.