Skip to content

Commit d49e7be

Browse files
committed
test base
1 parent 36b25a3 commit d49e7be

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

tests/test_table.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,13 @@ def test_section():
220220
table.add_row("row5")
221221
table.add_section() # Null-op
222222

223-
console = Console(record=True)
223+
console = Console(
224+
width=80,
225+
force_terminal=True,
226+
color_system="truecolor",
227+
legacy_windows=False,
228+
record=True,
229+
)
224230
console.print(table)
225231
output = console.export_text()
226232
print(repr(output))

0 commit comments

Comments
 (0)