diff options
author | dgp <dgp@users.sourceforge.net> | 2004-12-06 22:49:40 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2004-12-06 22:49:40 (GMT) |
commit | ccc271fb4c389869ca35b1cc0fbf3f2613e8f60e (patch) | |
tree | 6c184d5d665d558d07c1b692eae757576ceb3898 /tests/msgcat.test | |
parent | 5098d93a5364fb60487e91ae9fd4fd809c016a4a (diff) | |
download | tcl-ccc271fb4c389869ca35b1cc0fbf3f2613e8f60e.zip tcl-ccc271fb4c389869ca35b1cc0fbf3f2613e8f60e.tar.gz tcl-ccc271fb4c389869ca35b1cc0fbf3f2613e8f60e.tar.bz2 |
* tests/msgcat.test: makeFile/removeFile cleanup [1079117]
Diffstat (limited to 'tests/msgcat.test')
-rw-r--r-- | tests/msgcat.test | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/tests/msgcat.test b/tests/msgcat.test index 0ceb2e9..92a7109 100644 --- a/tests/msgcat.test +++ b/tests/msgcat.test @@ -12,7 +12,7 @@ # Note that after running these tests, entries will be left behind in the # message catalogs for locales foo, foo_BAR, and foo_BAR_baz. # -# RCS: @(#) $Id: msgcat.test,v 1.16 2004/11/11 01:16:07 das Exp $ +# RCS: @(#) $Id: msgcat.test,v 1.17 2004/12/06 22:49:40 dgp Exp $ package require Tcl 8.2 if {[catch {package require tcltest 2}]} { @@ -396,8 +396,7 @@ namespace eval ::msgcat::test { } else { set msg [string tolower $loc] } - makeFile [list ::msgcat::mcset $loc abc abc-$loc] $msg.msg \ - [file join [temporaryDirectory] msgdir] + makeFile [list ::msgcat::mcset $loc abc abc-$loc] $msg.msg $msgdir } variable count 1 foreach loc {foo foo_BAR foo_BAR_baz} { @@ -494,7 +493,7 @@ namespace eval ::msgcat::test { } else { set msg [string tolower $loc] } - removeFile $msg.msg msgdir + removeFile $msg.msg $msgdir } removeDirectory msgdir |