Different test data for a format Nu does not recognize.

This commit is contained in:
Andrés N. Robalino 2019-07-16 06:31:53 -05:00
parent c7531d6b3d
commit 67a0606b6d
2 changed files with 4 additions and 2 deletions

View file

@ -71,7 +71,9 @@ fn open_unknown_format_as_raw_single_value() {
cwd("tests/fixtures/formats"),
"open skinfolds.unsupported | echo $it");
assert_eq!(output, "ABS:3.0|PEC:3.0")
// if it's ABS:3.0|PEC:3.0 with the "|" character
// on Windows it's interpreted it as a command
assert_eq!(output, "ABS:3.0-PEC:3.0")
}
#[test]

View file

@ -1 +1 @@
"ABS:3.0|PEC:3.0"
"ABS:3.0-PEC:3.0"