We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 263776a commit 73f1b43Copy full SHA for 73f1b43
test/runtests.jl
@@ -53,14 +53,14 @@ catch err
53
"iconv error: byte sequence 0xc3a9e282ac is invalid in source encoding or cannot be represented in target encoding"
54
end
55
56
-@test_throws ErrorException decode("qwertyé€".data, "ASCII")
+@test_throws ErrorException decode("qwertyé€".data, "ISO-8859-1")
57
try
58
- decode("qwertyé€".data, "ASCII")
+ decode("qwertyé€".data, "ISO-8859-1")
59
catch err
60
io = IOBuffer()
61
showerror(io, err)
62
@test takebuf_string(io) ==
63
- "iconv error: byte sequence 0xc3a9e282ac is invalid in source encoding or cannot be represented in target encoding"
+ "iconv error: byte sequence 0xe282ac is invalid in source encoding or cannot be represented in target encoding"
64
65
66
mktemp() do p, io
0 commit comments