Making WordPress.org

Changeset 6634


Ignore:
Timestamp:
02/14/2018 01:41:47 PM (7 years ago)
Author:
danielbachhuber
Message:

phpunit-test-reporter: Increase inactive reporter threshold to 25

See https://github.com/WordPress/phpunit-test-reporter/pull/59

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/phpunit-test-reporter/src/class-display.php

    r6521 r6634  
    206206        $output           = '';
    207207        $query_args       = array(
    208             'posts_per_page'         => 10,
     208            'posts_per_page'         => 25,
    209209            'post_type'              => 'result',
    210210            'post_parent'            => 0,
     
    234234        if ( ! empty( $all_time_reporters ) ) {
    235235            $all_time_reporters = array_map( 'intval', $all_time_reporters );
    236             $output            .= '<h4>Registered, but no reports in >10 Revisions</h4>' . PHP_EOL;
     236            $output            .= '<h4>Registered, but no reports in >25 Revisions</h4>' . PHP_EOL;
    237237            $users              = get_users(
    238238                array(
Note: See TracChangeset for help on using the changeset viewer.