Skip to content

Commit

Permalink
feat: change table format
Browse files Browse the repository at this point in the history
  • Loading branch information
siyul-park committed Nov 22, 2023
1 parent 04f838e commit 7bf6f4e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/printer/table.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ var (
Format: table.FormatOptionsDefault,
HTML: table.DefaultHTMLOptions,
Options: table.Options{
DrawBorder: true,
DrawBorder: false,
SeparateColumns: true,
SeparateFooter: false,
SeparateHeader: false,
Expand Down
2 changes: 1 addition & 1 deletion cmd/printer/table_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ func TestTablePrinter_Print(t *testing.T) {
})
assert.NoError(t, err)

expect := " \n FOO BAR \n foo bar \n "
expect := " FOO BAR \n foo bar "

table, err := p.Print(data)
assert.NoError(t, err)
Expand Down

0 comments on commit 7bf6f4e

Please sign in to comment.