about summary refs log tree commit diff
diff options
context:
space:
mode:
-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