Make WordPress Core

Changeset 984 in tests


Ignore:
Timestamp:
08/21/2012 10:30:24 AM (12 years ago)
Author:
SergeyBiryukov
Message:

Use @ticket annotation in comment.php. see [979]. see #102.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/comment.php

    r983 r984  
    1515    }
    1616
     17    /**
     18     * @ticket 21101
     19     */
    1720    function test_get_comment_comment_approved_0() {
    18         $this->knownWPBug( 21101 );
    1921        $comments_approved_0 = get_comments( array( 'comment_approved' => '0' ) );
    2022        $this->assertEquals( 0, count( $comments_approved_0 ) );
    2123    }
    2224
     25    /**
     26     * @ticket 21101
     27     */
    2328    function test_get_comment_comment_approved_1() {
    24         $this->knownWPBug( 21101 );
    2529        $comments_approved_1 = get_comments( array( 'comment_approved' => '1' ) );
    2630
Note: See TracChangeset for help on using the changeset viewer.