From 0bdcb008741fa1c9d09c119eca8a800aa6a2654e Mon Sep 17 00:00:00 2001 From: Martijn Visser Date: Mon, 19 Oct 2020 13:28:44 +0200 Subject: [PATCH] fix downloading test data on julia nightly for some reason this function is no longer exported from Pkg.PlatformEngines --- test/remotefiles.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/remotefiles.jl b/test/remotefiles.jl index 77554b53..9193637e 100644 --- a/test/remotefiles.jl +++ b/test/remotefiles.jl @@ -52,5 +52,5 @@ for (f, sha) in remotefiles # download the file if it is not there or if it has a different checksum currfile = normpath(joinpath(testdatadir, f)) url = REPO_URL * f * "?raw=true" - download_verify(url, sha, currfile; force=true) + PlatformEngines.download_verify(url, sha, currfile; force=true) end