Skip to content

Commit

Permalink
Increased table column width limit to 75.
Browse files Browse the repository at this point in the history
  • Loading branch information
Bajger committed Feb 5, 2024
1 parent 571fa76 commit 3486a92
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ ConsoleListFormatterTest >> testTableColumnWidthLimit [
| size short longer longest|
short := 'short'.
longer := 'more long text'.
longest := 'some very very long string exceeding column width limit'.
longest := 'some very very very very very very very long string exceeding column width limit'.
size := formatter getMaxPrintStringWidthFor: {longer. longest. short.} printBlock: [ :aStr | aStr asString ].

"longest string exceeds the table column width limit, so the maximum column size should be equal to that limit"
Expand Down
2 changes: 1 addition & 1 deletion src/PharoLauncher-CLI/ConsoleListFormatter.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -315,5 +315,5 @@ ConsoleListFormatter >> rowMode: aBool [
ConsoleListFormatter >> tableColumnWidthLimit [

"this is max size of table column, in case value in cell is exceeded, it will be shortened to this limit"
^ 50
^ 75
]

0 comments on commit 3486a92

Please sign in to comment.