Make WordPress Core


Ignore:
Timestamp:
10/22/2020 05:53:47 PM (6 years ago)
Author:
desrosj
Message:

Build/Test Tools: Remove debug text included in [49267].

See #50401.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/includes/abstract-testcase.php

    r49267 r49280  
    199199
    200200                        if ( in_array( $github_event_name, $skipped, true ) || 'refs/heads/master' !== $github_ref ) {
    201                                 $this->markTestSkipped( 'For automated test runs, this test is only run on trunk/master - GitHub only' );
     201                                $this->markTestSkipped( 'For automated test runs, this test is only run on trunk/master' );
    202202                        }
    203203                } elseif ( 'false' !== $travis_branch ) {
    204204                        // We're on Travis CI.
    205205                        if ( 'master' !== $travis_branch || 'false' !== $travis_pull_request ) {
    206                                 $this->markTestSkipped( 'For automated test runs, this test is only run on trunk/master - Travis only' );
     206                                $this->markTestSkipped( 'For automated test runs, this test is only run on trunk/master' );
    207207                        }
    208208                }
Note: See TracChangeset for help on using the changeset viewer.