diff options
author | dgp <dgp@noemail.net> | 2002-04-08 18:35:51 (GMT) |
---|---|---|
committer | dgp <dgp@noemail.net> | 2002-04-08 18:35:51 (GMT) |
commit | b47b91023e745a0cdabbb4e0073f46ebcfbab2bf (patch) | |
tree | 614ce66dff2bbc5fa27ad0bab03c7dd94824a3a9 /library | |
parent | f7ba63b2570ec7da8b0bcaadd73bbb6bded69b7d (diff) | |
download | tcl-b47b91023e745a0cdabbb4e0073f46ebcfbab2bf.zip tcl-b47b91023e745a0cdabbb4e0073f46ebcfbab2bf.tar.gz tcl-b47b91023e745a0cdabbb4e0073f46ebcfbab2bf.tar.bz2 |
* corrected misspelling of getMatchingFiles
FossilOrigin-Name: 54d83974a553384cf5a380fb8112aafd665c0a5e
Diffstat (limited to 'library')
-rw-r--r-- | library/tcltest/tcltest.tcl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/tcltest/tcltest.tcl b/library/tcltest/tcltest.tcl index 95bbd61..ee56e7a 100644 --- a/library/tcltest/tcltest.tcl +++ b/library/tcltest/tcltest.tcl @@ -15,7 +15,7 @@ # Copyright (c) 2000 by Ajuba Solutions # All rights reserved. # -# RCS: @(#) $Id: tcltest.tcl,v 1.46 2002/04/05 15:47:05 dgp Exp $ +# RCS: @(#) $Id: tcltest.tcl,v 1.47 2002/04/08 18:35:51 dgp Exp $ # create the "tcltest" namespace for all testing variables and # procedures @@ -2548,7 +2548,7 @@ proc tcltest::cleanupTests {{calledFromAllFile 0}} { # None # a lower case version is needed for compatibility with tcltest 1.0 -proc tcltest::getMatchFiles args {eval GetMatchingFiles $args} +proc tcltest::getMatchingFiles args {eval GetMatchingFiles $args} proc tcltest::GetMatchingFiles { {searchDirectory ""} } { if {[llength [info level 0]] == 1} { |