We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aee0944 commit de381afCopy full SHA for de381af
1 file changed
tests/Test_Table.php
@@ -123,7 +123,11 @@ public function test_column_odd_single_width_with_double_width() {
123
} else {
124
$this->assertSame( '1', $result[0] );
125
}
126
- $this->assertSame( 'あ', $result[1] );
+ if ( Shell::is_windows() ) {
127
+ $this->assertSame( 'あ ', $result[1] );
128
+ } else {
129
+ $this->assertSame( 'あ', $result[1] );
130
+ }
131
132
// Zero width does no wrapping.
133
0 commit comments