diff options
author | dgp <dgp@users.sourceforge.net> | 2017-10-23 16:20:18 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2017-10-23 16:20:18 (GMT) |
commit | 172896b15a2b5b8a1163c9de824e20297a876ed5 (patch) | |
tree | 6074d964f252d4293d75e502e72d89b131206e3e /tests/while-old.test | |
parent | e9b584f81b87c299c819443f22bc5a81b20fff38 (diff) | |
download | tcl-172896b15a2b5b8a1163c9de824e20297a876ed5.zip tcl-172896b15a2b5b8a1163c9de824e20297a876ed5.tar.gz tcl-172896b15a2b5b8a1163c9de824e20297a876ed5.tar.bz2 |
Implementation branch for TIP 114 - Eliminate Octal Parsing...
Diffstat (limited to 'tests/while-old.test')
-rw-r--r-- | tests/while-old.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/while-old.test b/tests/while-old.test index ee17d0b..e33bd0b 100644 --- a/tests/while-old.test +++ b/tests/while-old.test @@ -92,7 +92,7 @@ test while-old-4.3 {errors in while loops} { test while-old-4.4 {errors in while loops} { set err [catch {while {"a"+"b"} {error "loop aborted"}} msg] list $err $msg -} {1 {can't use non-numeric string as operand of "+"}} +} {1 {can't use non-numeric string "a" as operand of "+"}} test while-old-4.5 {errors in while loops} { catch {unset x} set x 1 |