From 72f3ffa8a4e6351c77c5b515d3724cf634a5ba5e Mon Sep 17 00:00:00 2001 From: David Anthoff Date: Sat, 1 May 2021 11:18:17 -0700 Subject: [PATCH] Reenable HTTP test --- test/runtests.jl | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/test/runtests.jl b/test/runtests.jl index ef4ddc0..34ab611 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -68,12 +68,11 @@ end @testset "Less Basic" begin array = [(Name="John",Age=34.,Children=2),(Name="Sally",Age=54.,Children=1),(Name="Jim",Age=23.,Children=0)] - @test_broken false # TODO Reenable download test once FileIO is fixed - # @testset "remote loading" begin - # rem_array = collect(load("https://raw.githubusercontent.com/queryverse/CSVFiles.jl/v0.2.0/test/data.csv")) - # @test length(rem_array) == 3 - # @test rem_array == array - # end + @testset "remote loading" begin + rem_array = collect(load("https://raw.githubusercontent.com/queryverse/CSVFiles.jl/v0.2.0/test/data.csv")) + @test length(rem_array) == 3 + @test rem_array == array + end @testset "can round trip TSV" begin output_filename3 = tempname() * ".tsv"