mirror of
https://github.com/nushell/nushell
synced 2024-12-27 21:43:09 +00:00
Fix test for date to-table
This commit is contained in:
parent
304c7a0c92
commit
4a68c989e4
1 changed files with 4 additions and 1 deletions
|
@ -69,7 +69,10 @@ impl Command for SubCommand {
|
|||
span,
|
||||
},
|
||||
];
|
||||
Some(Value::Record { cols, vals, span })
|
||||
Some(Value::List {
|
||||
vals: vec![Value::Record { cols, vals, span }],
|
||||
span,
|
||||
})
|
||||
},
|
||||
},
|
||||
]
|
||||
|
|
Loading…
Reference in a new issue