diff options
author | vincentdarley <vincentdarley> | 2002-05-07 18:03:04 (GMT) |
---|---|---|
committer | vincentdarley <vincentdarley> | 2002-05-07 18:03:04 (GMT) |
commit | 6a9dc1249fd050fdbc5fcafe4a1a98330835a7c4 (patch) | |
tree | 87b40e9954c193d2ece01a0815cb90aeb23226e5 /tests/cmdAH.test | |
parent | 10cbc226c1ac7f429fb8a011dd091beee3f3afeb (diff) | |
download | tcl-6a9dc1249fd050fdbc5fcafe4a1a98330835a7c4.zip tcl-6a9dc1249fd050fdbc5fcafe4a1a98330835a7c4.tar.gz tcl-6a9dc1249fd050fdbc5fcafe4a1a98330835a7c4.tar.bz2 |
fix to bug 553320
Diffstat (limited to 'tests/cmdAH.test')
-rw-r--r-- | tests/cmdAH.test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/cmdAH.test b/tests/cmdAH.test index 973ecad..cd0cce8 100644 --- a/tests/cmdAH.test +++ b/tests/cmdAH.test @@ -10,7 +10,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: cmdAH.test,v 1.19 2002/04/08 09:02:11 das Exp $ +# RCS: @(#) $Id: cmdAH.test,v 1.20 2002/05/07 18:03:04 vincentdarley Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -60,7 +60,7 @@ test cmdAH-2.3 {Tcl_CdObjCmd} { file mkdir foo cd foo cd ~ - set result [string match [pwd] $oldpwd] + set result [string equal [pwd] $oldpwd] file delete foo set env(HOME) $temp set result @@ -74,7 +74,7 @@ test cmdAH-2.4 {Tcl_CdObjCmd} { file mkdir foo cd foo cd - set result [string match [pwd] $oldpwd] + set result [string equal [pwd] $oldpwd] file delete foo set env(HOME) $temp set result |