Skip to content

Commit f7126a3

Browse files
authored
Change URL for testing FTP downloads (#278)
The `ftp://xmlsoft.org` server seems unreachable, switch to an artifact hosted on the GNU server.
1 parent 1199e90 commit f7126a3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/runtests.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -749,12 +749,12 @@ include("setup.jl")
749749
end
750750

751751
@__MODULE__() == Main && @testset "ftp download" begin
752-
url = "ftp://xmlsoft.org/libxslt/libxslt-1.1.33.tar.gz"
752+
url = "ftp://ftp.gnu.org/gnu/auctex/auctex-13.3.tar.gz"
753753
file = Downloads.download(url)
754754
@test isfile(file)
755-
@test filesize(file) == 3444093
755+
@test filesize(file) == 1695608
756756
head = String(read!(open(file), Vector{UInt8}(undef, 16)))
757-
@test head == "\x1f\x8b\b\0\xa5T.\\\x02\x03\xec]{s۶"
757+
@test head == "\x1f\x8b\b\0\0\0\0\0\x02\x03\xec[\xebr\xdb\xc6"
758758
end
759759

760760
@testset "grace cleanup" begin

0 commit comments

Comments
 (0)