summaryrefslogtreecommitdiffstats
path: root/tests/interp.test
diff options
context:
space:
mode:
authordgp <dgp@noemail.net>2003-09-04 17:36:55 (GMT)
committerdgp <dgp@noemail.net>2003-09-04 17:36:55 (GMT)
commitc363faab978668af3235106753b6014e85338b5c (patch)
treeeb824b5605ab8514b51773e5155f1e826547ae03 /tests/interp.test
parent5ea10dde185011165830426cdc062d74ac4a4b75 (diff)
downloadtcl-c363faab978668af3235106753b6014e85338b5c.zip
tcl-c363faab978668af3235106753b6014e85338b5c.tar.gz
tcl-c363faab978668af3235106753b6014e85338b5c.tar.bz2
Typo correction: knownbug -> knownBug
FossilOrigin-Name: f22bbe5d8666bfc23c1c1dc7558aee74dd9977c3
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 bd322bb..b3f2e10 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.23 2003/06/10 19:46:47 msofer Exp $
+# RCS: @(#) $Id: interp.test,v 1.24 2003/09/04 17:36:56 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