aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-vars/star.tests
diff options
context:
space:
mode:
Diffstat (limited to 'shell/hush_test/hush-vars/star.tests')
-rwxr-xr-xshell/hush_test/hush-vars/star.tests4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/hush_test/hush-vars/star.tests b/shell/hush_test/hush-vars/star.tests
index 1914dde44..5554c4090 100755
--- a/shell/hush_test/hush-vars/star.tests
+++ b/shell/hush_test/hush-vars/star.tests
@@ -4,5 +4,5 @@ fi
# 'd e f' should be split into 3 separate args:
for a in $*; do echo ".$a."; done
-# must produce .1 abc d e f. Currently does not
-#for a in "$*"; do echo ".$a."; done
+# must produce .1 abc d e f.
+for a in "$*"; do echo ".$a."; done