summaryrefslogtreecommitdiffstats
path: root/tests/cmdMZ.test
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2019-09-10 12:05:54 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2019-09-10 12:05:54 (GMT)
commit4d51f6b054999c72115751f3895158195e42b40d (patch)
treed6ef5c56a014beb37d986cc60a79261dedc48f0e /tests/cmdMZ.test
parent4dc0eb331451143f9fac2621140d60c8073eb21d (diff)
downloadtcl-4d51f6b054999c72115751f3895158195e42b40d.zip
tcl-4d51f6b054999c72115751f3895158195e42b40d.tar.gz
tcl-4d51f6b054999c72115751f3895158195e42b40d.tar.bz2
Don't use constraints like unixOrPc anymore, use unixOrWin (for example)
Diffstat (limited to 'tests/cmdMZ.test')
-rw-r--r--tests/cmdMZ.test4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/cmdMZ.test b/tests/cmdMZ.test
index 98cb0fb..5f94777 100644
--- a/tests/cmdMZ.test
+++ b/tests/cmdMZ.test
@@ -224,12 +224,12 @@ foreach script {
# More tests of Tcl_SourceObjCmd are in source.test
test cmdMZ-3.3 {Tcl_SourceObjCmd: error conditions} -constraints {
- unixOrPc
+ unixOrWin
} -body {
list [catch {source} msg] $msg
} -match glob -result {1 {wrong # args: should be "source*fileName"}}
test cmdMZ-3.4 {Tcl_SourceObjCmd: error conditions} -constraints {
- unixOrPc
+ unixOrWin
} -body {
list [catch {source a b} msg] $msg
} -match glob -result {1 {wrong # args: should be "source*fileName"}}