summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2016-10-21 13:12:16 (GMT)
committerdgp <dgp@users.sourceforge.net>2016-10-21 13:12:16 (GMT)
commit1a2743707565baad1836d59d9a6da4a1cdedb488 (patch)
tree0f0ef17613348e2d9b4790012f7d753056f2ade0 /tests
parent2f570b44ce96781099a36c1e8a084cb69cb4862f (diff)
parent2ab238514bcdab640de8b1805337200932e2cd79 (diff)
downloadtcl-1a2743707565baad1836d59d9a6da4a1cdedb488.zip
tcl-1a2743707565baad1836d59d9a6da4a1cdedb488.tar.gz
tcl-1a2743707565baad1836d59d9a6da4a1cdedb488.tar.bz2
merge 8.6
Diffstat (limited to 'tests')
-rw-r--r--tests/format.test7
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/format.test b/tests/format.test
index 27eac31..e199398 100644
--- a/tests/format.test
+++ b/tests/format.test
@@ -564,9 +564,12 @@ test format-19.3 {Bug 2830354} {
test format-20.1 {Bug 2932421: plain %s caused intrep change of args} -body {
set x [dict create a b c d]
format %s $x
- # After this, obj in $x should be a dict with a non-NULL bytes field
+ # 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.
+ # Whether or not there is a string rep - we should not care!
tcl::unsupported::representation $x
-} -match glob -result {value is a dict with *, string representation "*"}
+} -match glob -result {value is a dict *}
# cleanup
catch {unset a}