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

View file

@ -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,
})
},
},
]