summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/compile.test2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/compile.test b/tests/compile.test
index 45d69e9..7335293 100644
--- a/tests/compile.test
+++ b/tests/compile.test
@@ -468,7 +468,7 @@ test compile-14.2 {testing element name "$"} -body {
set a() 1
set a(1) 2
set a($) 3
- list [set a()] [set a(1)] [set a($)] [unset a(); lindex [array names a] 0]
+ list [set a()] [set a(1)] [set a($)] [unset a() a(1); lindex [array names a] 0]
} -cleanup {unset a} -result [list 1 2 3 {$}]