Skip to content

Commit

Permalink
feat(TestRuns): change Scheduled status to Pending
Browse files Browse the repository at this point in the history
  • Loading branch information
domtra committed Sep 18, 2024
1 parent faba22a commit 218b81c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion includes/list-tables/class-test-runs-queue-list-table.php
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ public function column_status( $item ) {
);
} else {
$class = 'waiting';
$text = esc_html__( 'Scheduled', 'visual-regression-tests' );
$text = esc_html__( 'Pending', 'visual-regression-tests' );
$instructions = sprintf(
'<a href="%1$s">%2$s</a> | <a href="%3$s">%4$s</a>',
// translators: %s: number of tests.
Expand Down
2 changes: 1 addition & 1 deletion includes/models/class-test-run.php
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@ public static function get_status_data( $test_run ) {
break;
case 'scheduled':
$class = 'waiting';
$text = esc_html__( 'Scheduled', 'visual-regression-tests' );
$text = esc_html__( 'Pending', 'visual-regression-tests' );
$instructions .= sprintf(
'<a href="%1$s">%2$s</a>',
esc_url( admin_url( 'admin.php?page=vrts-settings' ) ),
Expand Down

0 comments on commit 218b81c

Please sign in to comment.