1
0
mirror of https://github.com/nushell/nushell.git synced 2025-06-12 04:56:56 +02:00

Fix test for date to-table

This commit is contained in:
Stefan Stanciulescu 2021-11-01 23:05:53 +01:00
parent 304c7a0c92
commit 4a68c989e4

@ -69,7 +69,10 @@ impl Command for SubCommand {
span, span,
}, },
]; ];
Some(Value::Record { cols, vals, span }) Some(Value::List {
vals: vec![Value::Record { cols, vals, span }],
span,
})
}, },
}, },
] ]