summaryrefslogtreecommitdiffstats
path: root/tests/interp.test
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2003-09-04 17:36:50 (GMT)
committerdgp <dgp@users.sourceforge.net>2003-09-04 17:36:50 (GMT)
commit07d33a36a1114cc2bb2b5b97ae0da95209fff8eb (patch)
tree3a41dcf7a260cb7e3d6702dd1be21e83675c8512 /tests/interp.test
parent6df292f4e80bfc89e813c03f93dd233e5f3ff988 (diff)
downloadtcl-07d33a36a1114cc2bb2b5b97ae0da95209fff8eb.zip
tcl-07d33a36a1114cc2bb2b5b97ae0da95209fff8eb.tar.gz
tcl-07d33a36a1114cc2bb2b5b97ae0da95209fff8eb.tar.bz2
Typo correction: knownbug -> knownBug
Diffstat (limited to 'tests/interp.test')
-rw-r--r--tests/interp.test4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/interp.test b/tests/interp.test
index e4b34eb..769f32f 100644
--- a/tests/interp.test
+++ b/tests/interp.test
@@ -10,7 +10,7 @@
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
-# RCS: @(#) $Id: interp.test,v 1.19.2.4 2003/06/10 19:58:37 msofer Exp $
+# RCS: @(#) $Id: interp.test,v 1.19.2.5 2003/09/04 17:36:50 dgp Exp $
if {[lsearch [namespace children] ::tcltest] == -1} {
package require tcltest 2.1
@@ -759,7 +759,7 @@ if {[info commands testinterpdelete] == ""} {
list [catch {a eval foo} msg] $msg
} {1 {attempt to call eval in deleted interpreter}}
}
-test interp-18.9 {eval in deleted interp, bug 495830} {knownbug} {
+test interp-18.9 {eval in deleted interp, bug 495830} {knownBug} {
interp create tst
interp alias tst suicide {} interp delete tst
list [catch {tst eval {suicide; set a 5}} msg] $msg