We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47cb653 commit f79b5ccCopy full SHA for f79b5cc
test/runtests.jl
@@ -61,9 +61,9 @@ end
61
# win_iconv currently does not throw an error on bytes >= 0x80 in ASCII sources
62
# https://github.com/win-iconv/win-iconv/pull/26
63
if OS_NAME != :Windows
64
- @test_throws ErrorException decode("qwertyé€".data, "ASCII")
+ @test_throws ErrorException decode(b"qwertyé€", "ASCII")
65
try
66
- decode("qwertyé€".data, "ASCII")
+ decode(b"qwertyé€", "ASCII")
67
catch err
68
io = IOBuffer()
69
showerror(io, err)
0 commit comments