We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 427f197 + b88eed3 commit a1c4c8fCopy full SHA for a1c4c8f
test/loadsave.jl
@@ -401,7 +401,9 @@ end
401
if VERSION >= v"1.3" begin
402
@testset "CSV load from URL via CSVFiles (#320)" begin
403
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"))
+ 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)
407
end
408
409
0 commit comments