Skip to content

Commit 7014f94

Browse files
committed
Fix test
1 parent d137bf6 commit 7014f94

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/DataFrame/DataFrame.class.st

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1056,8 +1056,11 @@ DataFrame >> info [
10561056
self columnNames doWithIndex: [ :col :index |
10571057
aStream
10581058
print: index;
1059-
nextPutAll: ' | ';
1060-
print: col;
1059+
nextPutAll: ' | '.
1060+
col isString
1061+
ifTrue: [ aStream nextPutAll: col ]
1062+
ifFalse: [ aStream print: col ].
1063+
aStream
10611064
nextPutAll: ' | ';
10621065
print: ((self columnAt: index) reject: #isNil) size;
10631066
nextPutAll: ' non-nil | ';

0 commit comments

Comments
 (0)