Skip to content

Commit

Permalink
Merge pull request #407 from JuliaIO/kf/latestworld
Browse files Browse the repository at this point in the history
Adjust to Julia 1.12 change to implicit world age increment
  • Loading branch information
Drvi authored Nov 21, 2024
2 parents 427f197 + b88eed3 commit a1c4c8f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/loadsave.jl
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,9 @@ end
if VERSION >= v"1.3" begin
@testset "CSV load from URL via CSVFiles (#320)" begin
f = joinpath("files", "data.csv")
@test collect(load(f)) == collect(load("https://raw.githubusercontent.com/queryverse/CSVFiles.jl/v0.2.0/test/data.csv"))
c1 = load(f)
c2 = load("https://raw.githubusercontent.com/queryverse/CSVFiles.jl/v0.2.0/test/data.csv")
@test collect(c1) == collect(c2)
end
end

Expand Down

0 comments on commit a1c4c8f

Please sign in to comment.