update a few nushell dependencies (#6291)

* update a few nushell dependencies

* update a test
This commit is contained in:
Darren Schroeder
2022-08-10 14:56:15 -05:00
committed by GitHub
parent ce26ef97e4
commit 58094987ff
7 changed files with 27 additions and 28 deletions

View File

@ -24,7 +24,7 @@ impl Command for ToYaml {
vec![Example {
description: "Outputs an YAML string representing the contents of this table",
example: r#"[[foo bar]; ["1" "2"]] | to yaml"#,
result: Some(Value::test_string("---\n- foo: \"1\"\n bar: \"2\"\n")),
result: Some(Value::test_string("- foo: '1'\n bar: '2'\n")),
}]
}