summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorpooryorick <com.digitalsmarties@pooryorick.com>2023-04-17 12:12:42 (GMT)
committerpooryorick <com.digitalsmarties@pooryorick.com>2023-04-17 12:12:42 (GMT)
commite08e6f2733a5715dfd8ff6062b5787f5e3ceb728 (patch)
tree25aeda66f2cd436a2239ac72eb255cf6e21ba010 /tests
parent87df69042cc59415cf4e792eabeed95e11478566 (diff)
downloadtcl-e08e6f2733a5715dfd8ff6062b5787f5e3ceb728.zip
tcl-e08e6f2733a5715dfd8ff6062b5787f5e3ceb728.tar.gz
tcl-e08e6f2733a5715dfd8ff6062b5787f5e3ceb728.tar.bz2
Correct some test descriptions in encoding.test.
Diffstat (limited to 'tests')
-rw-r--r--tests/encoding.test6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/encoding.test b/tests/encoding.test
index 35340a6..e73d3b8 100644
--- a/tests/encoding.test
+++ b/tests/encoding.test
@@ -568,7 +568,7 @@ test encoding-16.19 {Utf16ToUtfProc, bug [d19fe0a5b]} -body {
test encoding-16.20 {Utf16ToUtfProc, bug [d19fe0a5b]} -constraints deprecated -body {
encoding convertfrom utf-16 "\xD8\xD8"
} -result \uD8D8
-test encoding-16.21 {Utf16ToUtfProc, bug [d19fe0a5b]} -body {
+test encoding-16.21 {Utf32ToUtfProc, bug [d19fe0a5b]} -body {
encoding convertfrom utf-32 "\x00\x00\x00\x00\x41\x41"
} -result \x00\uFFFD
test encoding-16.22 {Utf16ToUtfProc, strict, bug [db7a085bd9]} -body {
@@ -596,10 +596,10 @@ test encoding-17.3 {UtfToUtf16Proc} -body {
test encoding-17.4 {UtfToUtf16Proc} -body {
encoding convertto -profile tcl8 utf-16le "\uD8D8"
} -result "\xD8\xD8"
-test encoding-17.5 {UtfToUtf16Proc} -body {
+test encoding-17.5 {UtfToUtf32Proc} -body {
encoding convertto utf-32le "\U460DC"
} -result "\xDC\x60\x04\x00"
-test encoding-17.6 {UtfToUtf16Proc} -body {
+test encoding-17.6 {UtfToUtf32Proc} -body {
encoding convertto utf-32be "\U460DC"
} -result "\x00\x04\x60\xDC"
test encoding-17.7 {UtfToUtf16Proc} -body {