diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-07-30 12:51:38 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-07-30 12:51:38 (GMT) |
commit | 27673e171bb63ae5c243d55c936522a3913cbcc8 (patch) | |
tree | 167c021b91f2a1ee566d8c6e0038fe11576d9a16 /tests/registry.test | |
parent | 6f401c3e624c251bbe6f116a38dc1ac035318c29 (diff) | |
download | tcl-27673e171bb63ae5c243d55c936522a3913cbcc8.zip tcl-27673e171bb63ae5c243d55c936522a3913cbcc8.tar.gz tcl-27673e171bb63ae5c243d55c936522a3913cbcc8.tar.bz2 |
Less strictness about exactly which dll versions are tested
Diffstat (limited to 'tests/registry.test')
-rw-r--r-- | tests/registry.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/registry.test b/tests/registry.test index 8f8aa98..77588e3 100644 --- a/tests/registry.test +++ b/tests/registry.test @@ -19,7 +19,7 @@ testConstraint reg 0 if {[testConstraint win]} { if {![catch { ::tcltest::loadTestedCommands - package require -exact registry 1.3.0 + set ::regver [package require registry 1.3.0] }]} { testConstraint reg 1 } @@ -32,7 +32,7 @@ testConstraint english [expr { }] test registry-1.0 {check if we are testing the right dll} {win reg} { - package versions registry + set ::regver } {1.3.0} test registry-1.1 {argument parsing for registry command} {win reg} { list [catch {registry} msg] $msg |