From 706c1a838e2ca2a01874e3a2a7a5fea8c933cfa3 Mon Sep 17 00:00:00 2001 From: Johannes Altmanninger Date: Sat, 29 Feb 2020 10:48:19 +0100 Subject: [PATCH] Fix tests for 91fcb8c42c7e995517cd2b476366b5c4f6c74b6f --- tests/checks/read.fish | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/checks/read.fish b/tests/checks/read.fish index f41db3de9..41dee9135 100644 --- a/tests/checks/read.fish +++ b/tests/checks/read.fish @@ -65,7 +65,7 @@ print_vars one two three #CHECK: 1 'test' 1 '' 1 '' echo 'foo bar baz' | read -l one two three print_vars one two three -#CHECK: 1 'foo' 1 'bar' 1 'baz' +#CHECK: 1 'foo' 1 'bar' 1 ' baz' echo -n 'a' | read -l one echo "$status $one" #CHECK: 0 a @@ -323,7 +323,7 @@ begin end #CHECK: a #CHECK: b -#CHECK: c +#CHECK: ..c # At one point, whatever was read was printed _before_ banana echo banana (echo sausage | read)