mirror of
https://github.com/nushell/nushell
synced 2024-12-24 12:03:18 +00:00
Fix tests
This commit is contained in:
parent
7326174b80
commit
50d0465802
1 changed files with 3 additions and 1 deletions
|
@ -27,7 +27,9 @@ fn data_and_header_has_different_size_doesnt_work() {
|
|||
)
|
||||
);
|
||||
|
||||
let table = NuTable::from(vec![create_row(5), create_row(5), create_row(5)]);
|
||||
let mut table = NuTable::from(vec![create_row(5), create_row(5), create_row(5)]);
|
||||
table.set_theme(theme::heavy());
|
||||
table.set_structure(false, true, false);
|
||||
|
||||
let table = table.draw(usize::MAX);
|
||||
|
||||
|
|
Loading…
Reference in a new issue