summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMiguel Sofer <miguel.sofer@gmail.com>2014-12-03 23:34:36 (GMT)
committerMiguel Sofer <miguel.sofer@gmail.com>2014-12-03 23:34:36 (GMT)
commit4c172f0d7b93eab8a18f90506049970fc39cf06c (patch)
treeeda047898aef819b757a38707214105b800d8950 /tests
parent832c28c7d1a73430e8bd0e33c71ffbc846e0a6cf (diff)
downloadtcl-4c172f0d7b93eab8a18f90506049970fc39cf06c.zip
tcl-4c172f0d7b93eab8a18f90506049970fc39cf06c.tar.gz
tcl-4c172f0d7b93eab8a18f90506049970fc39cf06c.tar.bz2
missing unset in new test
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 {$}]