Skip to content

Commit a1c4c8f

Browse files
authored
Merge pull request #407 from JuliaIO/kf/latestworld
Adjust to Julia 1.12 change to implicit world age increment
2 parents 427f197 + b88eed3 commit a1c4c8f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/loadsave.jl

+3-1
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,9 @@ end
401401
if VERSION >= v"1.3" begin
402402
@testset "CSV load from URL via CSVFiles (#320)" begin
403403
f = joinpath("files", "data.csv")
404-
@test collect(load(f)) == collect(load("https://raw.githubusercontent.com/queryverse/CSVFiles.jl/v0.2.0/test/data.csv"))
404+
c1 = load(f)
405+
c2 = load("https://raw.githubusercontent.com/queryverse/CSVFiles.jl/v0.2.0/test/data.csv")
406+
@test collect(c1) == collect(c2)
405407
end
406408
end
407409

0 commit comments

Comments
 (0)