diff options
author | culler <culler> | 2019-04-05 20:28:32 (GMT) |
---|---|---|
committer | culler <culler> | 2019-04-05 20:28:32 (GMT) |
commit | 09c8d9c9eb2e971bcec74214a9479f224f1747e5 (patch) | |
tree | 145db45675fcd31ceddd2aba85728a432534a0ed /tests | |
parent | 081ca218bb45dcb50deb08f5674ed98c317f18b6 (diff) | |
download | tk-09c8d9c9eb2e971bcec74214a9479f224f1747e5.zip tk-09c8d9c9eb2e971bcec74214a9479f224f1747e5.tar.gz tk-09c8d9c9eb2e971bcec74214a9479f224f1747e5.tar.bz2 |
Remove debugging commands accidentally left in the new tests
Diffstat (limited to 'tests')
-rw-r--r-- | tests/grid.test | 1 | ||||
-rw-r--r-- | tests/pack.test | 2 |
2 files changed, 0 insertions, 3 deletions
diff --git a/tests/grid.test b/tests/grid.test index cc445e3..e901a93 100644 --- a/tests/grid.test +++ b/tests/grid.test @@ -204,7 +204,6 @@ test grid-3.11 {configure: basic argument checking} -body { frame .f2 grid .f1 -in .f2 grid .f2 -in .f1 - update } -cleanup { grid_reset 3.11 } -returnCodes error -result {can't put .f2 inside .f1, would cause management loop} diff --git a/tests/pack.test b/tests/pack.test index cc517ed..e2efb4d 100644 --- a/tests/pack.test +++ b/tests/pack.test @@ -989,10 +989,8 @@ test pack-10.6 {prevent management loops} -body { frame .f1 frame .f2 frame .f3 - puts "packing frames" pack .f1 -in .f2 pack .f2 -in .f3 -# update idletasks pack .f3 -in .f1 } -cleanup { destroy .f1 |