diff options
author | Miguel Sofer <miguel.sofer@gmail.com> | 2014-12-03 23:34:36 (GMT) |
---|---|---|
committer | Miguel Sofer <miguel.sofer@gmail.com> | 2014-12-03 23:34:36 (GMT) |
commit | 0c0be357100d28784d29e88ef2af8e61ffd7aeb1 (patch) | |
tree | eda047898aef819b757a38707214105b800d8950 /tests | |
parent | 137e142be2571539a6616058d927ba0e27526609 (diff) | |
download | tcl-0c0be357100d28784d29e88ef2af8e61ffd7aeb1.zip tcl-0c0be357100d28784d29e88ef2af8e61ffd7aeb1.tar.gz tcl-0c0be357100d28784d29e88ef2af8e61ffd7aeb1.tar.bz2 |
missing unset in new test
Diffstat (limited to 'tests')
-rw-r--r-- | tests/compile.test | 2 |
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 {$}] |