Make seq output type consistent (#7045)

This commit is contained in:
Reilly Wood
2022-11-09 14:19:02 -08:00
committed by GitHub
parent 2201bd9b09
commit e18fb13616
2 changed files with 34 additions and 248 deletions

View File

@ -198,7 +198,10 @@ fn commands_have_usage() -> TestResult {
#[test]
fn equals_separates_long_flag() -> TestResult {
run_test(r#"seq 1 4 --separator='+'"#, "1+2+3+4")
run_test(
r#"'nushell' | str lpad --length=10 --character='-'"#,
"---nushell",
)
}
#[test]