diff options
author | dgp <dgp@users.sourceforge.net> | 2013-02-05 17:44:34 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2013-02-05 17:44:34 (GMT) |
commit | 2ee1726311c917823daec3d05049fa6a328a5110 (patch) | |
tree | cf24d154f023ca48a7ede5738ca161c7ada9f153 /tests/font.test | |
parent | db44588c3136ad539796d09442c27c55fdfee708 (diff) | |
download | tk-2ee1726311c917823daec3d05049fa6a328a5110.zip tk-2ee1726311c917823daec3d05049fa6a328a5110.tar.gz tk-2ee1726311c917823daec3d05049fa6a328a5110.tar.bz2 |
Restore failing tests to passing.
Diffstat (limited to 'tests/font.test')
-rw-r--r-- | tests/font.test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/font.test b/tests/font.test index 33986af..33e411a 100644 --- a/tests/font.test +++ b/tests/font.test @@ -798,11 +798,11 @@ test font-18.1 {FreeFontObjProc} -constraints testfont -setup { destroy .b1 set result {} } -body { - set x [format {Courier 12}] + set x [join {Courier 12} { }] button .b1 -font $x - set y [format {Courier 12}] + set y [join {Courier 12} { }] .b1 configure -font $y - set z [format {Courier 12}] + set z [join {Courier 12} { }] .b1 configure -font $z lappend result [testfont counts {Courier 12}] set x red |