diff options
author | fvogel <fvogelnew1@free.fr> | 2019-01-26 16:58:17 (GMT) |
---|---|---|
committer | fvogel <fvogelnew1@free.fr> | 2019-01-26 16:58:17 (GMT) |
commit | f5aac2cbc6abf0f40ed14db7acc4a5bcfd96bce8 (patch) | |
tree | de3c648f513b01d7b686c0b5e7ff4adcb2c2fbde /tests | |
parent | bcbac6d72fa593de9f7ba235102d9eedfdfe526b (diff) | |
download | tk-f5aac2cbc6abf0f40ed14db7acc4a5bcfd96bce8.zip tk-f5aac2cbc6abf0f40ed14db7acc4a5bcfd96bce8.tar.gz tk-f5aac2cbc6abf0f40ed14db7acc4a5bcfd96bce8.tar.bz2 |
Load the Tk package, not Tktest
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unixEmbed.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unixEmbed.test b/tests/unixEmbed.test index dabf0a0..4058058 100644 --- a/tests/unixEmbed.test +++ b/tests/unixEmbed.test @@ -29,7 +29,7 @@ namespace eval ::_test_tmp { } foreach pkg [info loaded] { - if {[lindex $pkg 1] eq "Tktest"} { + if {[lindex $pkg 1] eq "Tk"} { set ::_test_tmp::TkLoadCmd [list load {*}$pkg] break } |