summaryrefslogtreecommitdiffstats
path: root/tests/format.test
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2021-11-08 23:11:16 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2021-11-08 23:11:16 (GMT)
commit5ad22cafaf30e790570411e299b644551c4826a5 (patch)
tree2bf6833eff476bdd45350195b780a3ca0d56c4cf /tests/format.test
parentf3ce97fe147b1c809f1aba0267c6aa3de12b1597 (diff)
parentfa56430c8b7ebbd159d6e3b45ecfd04f2a193d9b (diff)
downloadtcl-5ad22cafaf30e790570411e299b644551c4826a5.zip
tcl-5ad22cafaf30e790570411e299b644551c4826a5.tar.gz
tcl-5ad22cafaf30e790570411e299b644551c4826a5.tar.bz2
Merge 8.7
Diffstat (limited to 'tests/format.test')
-rw-r--r--tests/format.test4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/format.test b/tests/format.test
index 0dd55f0..c5053e8 100644
--- a/tests/format.test
+++ b/tests/format.test
@@ -620,12 +620,12 @@ test format-19.4.2 {Bug d498578df4: width overflow should cause limit exceeded}
} -returnCodes error -result "max size for a Tcl value exceeded"
# Note that this test may fail in future versions
-test format-20.1 {Bug 2932421: plain %s caused intrep change of args} -body {
+test format-20.1 {Bug 2932421: plain %s caused internalrep change of args} -body {
set x [dict create a b c d]
format %s $x
# After this, obj in $x should be a dict
# We are testing to make sure it has not been shimmered to a
- # different intrep when that is not necessary.
+ # different internalrep when that is not necessary.
# Whether or not there is a string rep - we should not care!
tcl::unsupported::representation $x
} -match glob -result {value is a dict *}