diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-07-16 10:42:26 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-07-16 10:42:26 (GMT) |
commit | 15c92b930024bfb2f8a3930761a67ac965384a62 (patch) | |
tree | c8c1eda6489bf292a7917aa4bc0d4dfb6296b537 /tests/format.test | |
parent | 03daf47cf082103bf272f99d393f66406627b318 (diff) | |
download | tcl-15c92b930024bfb2f8a3930761a67ac965384a62.zip tcl-15c92b930024bfb2f8a3930761a67ac965384a62.tar.gz tcl-15c92b930024bfb2f8a3930761a67ac965384a62.tar.bz2 |
simplify check for ::tcltest namespace in testcases
Diffstat (limited to 'tests/format.test')
-rw-r--r-- | tests/format.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/format.test b/tests/format.test index 3640376..ded8a4c 100644 --- a/tests/format.test +++ b/tests/format.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. -if {[lsearch [namespace children] ::tcltest] == -1} { +if {"::tcltest" ni [namespace children]} { package require tcltest 2 namespace import -force ::tcltest::* } |