Changeset 9053 for trunk/tests/phpunit/includes/testcase.php
- Timestamp:
- 09/27/2014 10:51:53 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/includes/testcase.php
r9022 r9053 282 282 return; 283 283 284 if ( ! TracTickets::isTracTicketClosed( 'https://buddypress.trac.wordpress.org', $ticket_id ) ) { 284 $trac_url = 'https://buddypress.trac.wordpress.org'; 285 286 // When SSL is not available, use non-SSL mirror 287 // Primarily for travis-ci PHP 5.2 build 288 if ( ! extension_loaded( 'openssl' ) ) { 289 $trac_url = 'http://hardg.com/bp-open-tickets'; 290 } 291 292 if ( ! TracTickets::isTracTicketClosed( $trac_url, $ticket_id ) ) { 285 293 $this->markTestSkipped( sprintf( 'BuddyPress Ticket #%d is not fixed', $ticket_id ) ); 286 294 }
Note: See TracChangeset
for help on using the changeset viewer.