Skip to content

Commit c6bb633

Browse files
authored
Format files using DocumentFormat
1 parent 45f0fee commit c6bb633

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

test/runtests.jl

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,19 @@ using Test
77
@testset "Core" begin
88

99
for filename in readdir(joinpath(@__DIR__, "..", "data", "data"))
10-
if splitext(filename)[2] == ".json" || splitext(filename)[2] == ".csv"
11-
if !in(splitdir(filename)[2], ["earthquakes.json", "graticule.json", "londonBoroughs.json", "londonTubeLines.json", "miserables.json", "sf-temps.csv", "us-10m.json", "world-110m.json", "annual-precip.json", "volcano.json"])
12-
vd = dataset(filename)
10+
if splitext(filename)[2] == ".json" || splitext(filename)[2] == ".csv"
11+
if !in(splitdir(filename)[2], ["earthquakes.json", "graticule.json", "londonBoroughs.json", "londonTubeLines.json", "miserables.json", "sf-temps.csv", "us-10m.json", "world-110m.json", "annual-precip.json", "volcano.json"])
12+
vd = dataset(filename)
1313

14-
@test IteratorInterfaceExtensions.isiterable(vd) == true
15-
@test TableTraits.isiterabletable(vd) == true
14+
@test IteratorInterfaceExtensions.isiterable(vd) == true
15+
@test TableTraits.isiterabletable(vd) == true
1616

17-
cvd = collect(vd)
17+
cvd = collect(vd)
1818

19-
@test isa(cvd, Array)
20-
end
21-
end
19+
@test isa(cvd, Array)
2220
end
21+
end
22+
end
2323

2424
df = dataset("iris")
2525

0 commit comments

Comments
 (0)