diff options
author | hobbs <hobbs> | 2007-04-24 15:54:30 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2007-04-24 15:54:30 (GMT) |
commit | ce942fac879a577377549eb9d6e3e63fe69325fa (patch) | |
tree | c3c2a30fd40331569b324b822e9f71a99a532bd9 | |
parent | 948133ccb5aa5ba362b22d7ffcfdea0a4f7e6e73 (diff) | |
download | tk-ce942fac879a577377549eb9d6e3e63fe69325fa.zip tk-ce942fac879a577377549eb9d6e3e63fe69325fa.tar.gz tk-ce942fac879a577377549eb9d6e3e63fe69325fa.tar.bz2 |
(font-46.[12]): correct listification of result
-rw-r--r-- | tests/font.test | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/font.test b/tests/font.test index 8dbaf0f..3dce0f7 100644 --- a/tests/font.test +++ b/tests/font.test @@ -6,7 +6,7 @@ # Copyright (c) 1998-1999 by Scriptics Corporation. # All rights reserved. # -# RCS: @(#) $Id: font.test,v 1.14 2006/12/01 20:14:23 kennykb Exp $ +# RCS: @(#) $Id: font.test,v 1.15 2007/04/24 15:54:30 hobbs Exp $ package require tcltest 2.1 eval tcltest::configure $argv @@ -1339,16 +1339,16 @@ test font-46.1 {font actual, with character, no option, no --} \ font actual {times 10} a } \ -match glob \ - -result "-family [font actual {times 10} -family] -size *\ - -slant roman -underline 0 -overstrike 0" + -result [list -family [font actual {times 10} -family] -size *\ + -slant roman -underline 0 -overstrike 0] test font-46.2 {font actual, with character introduced by --} \ -body { font actual {times 10} -- - } \ -match glob \ - -result "-family [font actual {times 10} -family] -size *\ - -slant roman -underline 0 -overstrike 0" + -result [list -family [font actual {times 10} -family] -size *\ + -slant roman -underline 0 -overstrike 0] test font-46.3 {font actual, with character and option} { font actual {times 10} -family a |