diff options
author | fvogel <fvogelnew1@free.fr> | 2022-12-04 20:08:17 (GMT) |
---|---|---|
committer | fvogel <fvogelnew1@free.fr> | 2022-12-04 20:08:17 (GMT) |
commit | e26f438de095e43a1d1b6ff9586e3cd6933eb2f6 (patch) | |
tree | 6bb128e8b55f374db1483e8b9724698dc6b4b000 /tests/ttk | |
parent | b64002419af256cd1febd2c591207ba257058f35 (diff) | |
download | tk-e26f438de095e43a1d1b6ff9586e3cd6933eb2f6.zip tk-e26f438de095e43a1d1b6ff9586e3cd6933eb2f6.tar.gz tk-e26f438de095e43a1d1b6ff9586e3cd6933eb2f6.tar.bz2 |
treeview.test: Remove the failsOnUbuntuNoXft constraint on treeview-rowheight-5. This test did fail at the CI runner on Linux in the --disable-xft case because the test suite hygiene was not good enough (see previous commit fixing this), and for no other reason.
Diffstat (limited to 'tests/ttk')
-rw-r--r-- | tests/ttk/treeview.test | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/ttk/treeview.test b/tests/ttk/treeview.test index 7e5f322..b5209bb 100644 --- a/tests/ttk/treeview.test +++ b/tests/ttk/treeview.test @@ -9,7 +9,6 @@ namespace import -force tcltest::* loadTestedCommands testConstraint failsOnUbuntu [expr {![info exists ::env(CI)] || ![string match Linux $::tcl_platform(os)]}] -testConstraint failsOnUbuntuNoXft [expr {[testConstraint failsOnUbuntu] || (![catch {tk::pkgconfig get fontsystem} fs] && ($fs eq "xft"))}] # consistencyCheck -- # Traverse the tree to make sure the item data structures @@ -1185,7 +1184,7 @@ test treeview-rowheight-4 "rowheight adapts to item padding" -constraints failsO ttk::style configure Item -padding {} } -result [expr {3-2 + 5-2}] -test treeview-rowheight-5 "rowheight adapts to cell padding" -constraints failsOnUbuntuNoXft -body { +test treeview-rowheight-5 "rowheight adapts to cell padding" -body { # Test that things from Cell style is picked up. ttk::style configure Cell -padding "2 5 2 5" update |