diff options
author | nijtmans <nijtmans> | 2010-12-13 15:25:35 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2010-12-13 15:25:35 (GMT) |
commit | 1163db68f3c029d63c522ada68ab47396fe37aba (patch) | |
tree | a3ca5553dbbf22b09cb625e81ff3027b1a54610d /tests/main.test | |
parent | d2674e76cf933113aa9181c43646b4fcc0313f42 (diff) | |
download | tk-1163db68f3c029d63c522ada68ab47396fe37aba.zip tk-1163db68f3c029d63c522ada68ab47396fe37aba.tar.gz tk-1163db68f3c029d63c522ada68ab47396fe37aba.tar.bz2 |
Change "Application initialization failed" to "application-specific initialization failed", for consistency with Tcl.
Diffstat (limited to 'tests/main.test')
-rw-r--r-- | tests/main.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/main.test b/tests/main.test index b7418e1..9f117f7 100644 --- a/tests/main.test +++ b/tests/main.test @@ -8,7 +8,7 @@ # Copyright (c) 1998-1999 by Scriptics Corporation. # All rights reserved. # -# RCS: @(#) $Id: main.test,v 1.12 2008/08/12 22:52:23 aniap Exp $ +# RCS: @(#) $Id: main.test,v 1.13 2010/12/13 15:25:35 nijtmans Exp $ package require tcltest 2.2 namespace import ::tcltest::* @@ -96,7 +96,7 @@ test main-2.3 {Tk_MainEx: -encoding option} -constraints stdio -setup { test main-3.1 {Tk_ParseArgv: -help option} -constraints unix -body { # Run only on unix as Win32 pops up native dialog exec [interpreter] -help -} -returnCodes error -match glob -result {% Application initialization failed: Command-specific options:*} +} -returnCodes error -match glob -result {% application-specific initialization failed: Command-specific options:*} test main-3.2 {Tk_ParseArgv: -help option} -setup { set maininterp [interp create] |