We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e53d0a1 commit aee0944Copy full SHA for aee0944
tests/Test_Table.php
@@ -118,7 +118,11 @@ public function test_column_odd_single_width_with_double_width() {
118
119
$this->assertSame( 13, count( $result ) );
120
// Uneven rows.
121
- $this->assertSame( '1', $result[0] );
+ if ( Shell::is_windows() ) {
122
+ $this->assertSame( '1 ', $result[0] );
123
+ } else {
124
+ $this->assertSame( '1', $result[0] );
125
+ }
126
$this->assertSame( 'あ', $result[1] );
127
128
// Zero width does no wrapping.
0 commit comments