Skip to content

Commit 73f1b43

Browse files
committed
Test
1 parent 263776a commit 73f1b43

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/runtests.jl

+3-3
Original file line numberDiff line numberDiff line change
@@ -53,14 +53,14 @@ catch err
5353
"iconv error: byte sequence 0xc3a9e282ac is invalid in source encoding or cannot be represented in target encoding"
5454
end
5555

56-
@test_throws ErrorException decode("qwertyé€".data, "ASCII")
56+
@test_throws ErrorException decode("qwertyé€".data, "ISO-8859-1")
5757
try
58-
decode("qwertyé€".data, "ASCII")
58+
decode("qwertyé€".data, "ISO-8859-1")
5959
catch err
6060
io = IOBuffer()
6161
showerror(io, err)
6262
@test takebuf_string(io) ==
63-
"iconv error: byte sequence 0xc3a9e282ac is invalid in source encoding or cannot be represented in target encoding"
63+
"iconv error: byte sequence 0xe282ac is invalid in source encoding or cannot be represented in target encoding"
6464
end
6565

6666
mktemp() do p, io

0 commit comments

Comments
 (0)