From 6a139c2eb7104b53a560049015a8460686f02f18 Mon Sep 17 00:00:00 2001 From: Maarten Pronk Date: Sun, 27 Mar 2022 14:24:18 +0200 Subject: [PATCH] Fixed typo in Download*s*. --- test/get_testdata.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/get_testdata.jl b/test/get_testdata.jl index 2a07c0a..a9e9868 100644 --- a/test/get_testdata.jl +++ b/test/get_testdata.jl @@ -30,5 +30,5 @@ for f in remotefiles currdir = dirname(currfile) isdir(currdir) || mkpath(currdir) # download the file - isfile(currfile) || Download.download(REPO_URL * f * "?raw=true", currfile) + isfile(currfile) || Downloads.download(REPO_URL * f * "?raw=true", currfile) end