summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBarton E. Schaefer <schaefer@zsh.org>2015-07-22 12:57:29 -0700
committerBarton E. Schaefer <schaefer@zsh.org>2015-07-22 12:57:29 -0700
commitcd690f45316aede3c617e70ad0abae8b7dcd2f80 (patch)
tree56286603c244eea17c44d61f5bf37f19bb94061c
parenta1f8d4ffc73293e0461c01ff005194a474854376 (diff)
downloadzsh-cd690f45316aede3c617e70ad0abae8b7dcd2f80.tar.gz
zsh-cd690f45316aede3c617e70ad0abae8b7dcd2f80.zip
fix another test for 35581
-rw-r--r--ChangeLog2
-rw-r--r--Test/B02typeset.ztst4
2 files changed, 4 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 0b631c1a2..9401b7f92 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -10,6 +10,8 @@
2015-07-22 Barton E. Schaefer <schaefer@zsh.org>
+ * unposted: Test/B02typeset.ztst: fix another test for 35581
+
* 35582: Test/A06assign.ztst, Test/B02typeset.ztst: test for 35581
* 35581: Src/params.c: output array assignments with spaces inside
diff --git a/Test/B02typeset.ztst b/Test/B02typeset.ztst
index 05b3c16ea..a059442e9 100644
--- a/Test/B02typeset.ztst
+++ b/Test/B02typeset.ztst
@@ -703,7 +703,7 @@
print $array
0:setting empty array in typeset
>typeset -a array
->array=('' two '' four)
+>array=( '' two '' four )
>typeset -a array
->array=(one '' three)
+>array=( one '' three )
>no really nothing here