Skip to content

Commit aee0944

Browse files
committed
another one
1 parent e53d0a1 commit aee0944

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

tests/Test_Table.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,11 @@ public function test_column_odd_single_width_with_double_width() {
118118

119119
$this->assertSame( 13, count( $result ) );
120120
// Uneven rows.
121-
$this->assertSame( '1', $result[0] );
121+
if ( Shell::is_windows() ) {
122+
$this->assertSame( '1 ', $result[0] );
123+
} else {
124+
$this->assertSame( '1', $result[0] );
125+
}
122126
$this->assertSame( '', $result[1] );
123127

124128
// Zero width does no wrapping.

0 commit comments

Comments
 (0)