summaryrefslogtreecommitdiffstats
path: root/tests/nre.test
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2011-03-10 16:25:31 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2011-03-10 16:25:31 (GMT)
commit595b0578b02537167e39fb7f4d2c25a18b196391 (patch)
tree77df4dfa75e6827594aea301cde3f1f48c8fb4c4 /tests/nre.test
parent226803c44fa0615537f00d627caf13edc292ae67 (diff)
downloadtcl-595b0578b02537167e39fb7f4d2c25a18b196391.zip
tcl-595b0578b02537167e39fb7f4d2c25a18b196391.tar.gz
tcl-595b0578b02537167e39fb7f4d2c25a18b196391.tar.bz2
Fix remaining broken tests (test failures appear non-serious)
Diffstat (limited to 'tests/nre.test')
-rw-r--r--tests/nre.test4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/nre.test b/tests/nre.test
index 2c97edc..295f02e 100644
--- a/tests/nre.test
+++ b/tests/nre.test
@@ -161,7 +161,7 @@ test nre-5.1 {[namespace eval] is not recursive} -setup {
namespace delete ::foo
} -constraints {
testnrelevels
-} -result {{0 2 2 2} 0}
+} -result {{0 3 2 2} 0}
test nre-5.2 {[namespace eval] is not recursive} -setup {
namespace eval ::foo {
@@ -174,7 +174,7 @@ test nre-5.2 {[namespace eval] is not recursive} -setup {
namespace delete ::foo
} -constraints {
testnrelevels
-} -result {{0 2 2 2} 0}
+} -result {{0 3 2 2} 0}
test nre-6.1 {[uplevel] is not recursive} -setup {
proc a i [makebody {uplevel 1 [list a $i]}]