diff options
author | donal.k.fellows@manchester.ac.uk <dkf> | 2004-05-23 17:34:48 (GMT) |
---|---|---|
committer | donal.k.fellows@manchester.ac.uk <dkf> | 2004-05-23 17:34:48 (GMT) |
commit | fc7828244bf96fcd2e6b115912abc0eef2aae1c0 (patch) | |
tree | c1834b8cace8654026ee20f8fd75ea3f340a902c /tests/scale.test | |
parent | ba564f472a6f02d2896285a0092b341f87bbd843 (diff) | |
download | tk-fc7828244bf96fcd2e6b115912abc0eef2aae1c0.zip tk-fc7828244bf96fcd2e6b115912abc0eef2aae1c0.tar.gz tk-fc7828244bf96fcd2e6b115912abc0eef2aae1c0.tar.bz2 |
First step towards improving test style. Also start using Tcl 8.5 features.
Diffstat (limited to 'tests/scale.test')
-rw-r--r-- | tests/scale.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/scale.test b/tests/scale.test index 13c1d3a..ffc4101 100644 --- a/tests/scale.test +++ b/tests/scale.test @@ -6,7 +6,7 @@ # Copyright (c) 1998-1999 by Scriptics Corporation. # All rights reserved. # -# RCS: @(#) $Id: scale.test,v 1.14 2003/08/13 10:28:21 patthoyts Exp $ +# RCS: @(#) $Id: scale.test,v 1.15 2004/05/23 17:34:49 dkf Exp $ package require tcltest 2.1 eval tcltest::configure $argv @@ -78,7 +78,7 @@ foreach test { lindex [.s configure $name] 4 } [lindex $test 2] incr i - if {[lindex $test 3] != ""} { + if {[lindex $test 3] ne ""} { test scale-1.$i {configuration options} { list [catch {.s configure $name [lindex $test 3]} msg] $msg } [list 1 [lindex $test 4]] |