Skip to content

Commit 8471ed1

Browse files
committed
No need to overdo WP_CLI_TEST_SHELL_COLUMNS_RESET check.
1 parent 1e227ab commit 8471ed1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/cli/Shell.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class Shell {
2727
static public function columns() {
2828
static $columns;
2929

30-
if ( false !== ( $env_reset = getenv( 'WP_CLI_TEST_SHELL_COLUMNS_RESET' ) ) && $env_reset ) {
30+
if ( getenv( 'WP_CLI_TEST_SHELL_COLUMNS_RESET' ) ) {
3131
$columns = null;
3232
}
3333
if ( null === $columns ) {

0 commit comments

Comments
 (0)