Skip to content

Commit 6db3b09

Browse files
Format .jl files (#465)
Co-authored-by: yeesian <[email protected]>
1 parent efea087 commit 6db3b09

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

benchmark/remotefiles.jl

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,10 @@ julia> open(filepath/filename) do f
1616
end
1717
```
1818
"""
19-
remotefiles = [
20-
(
21-
"data/road.zip",
22-
"058bdc549d0fc5bfb6deaef138e48758ca79ae20df79c2fb4c40cb878f48bfd8",
23-
),
24-
]
19+
remotefiles = [(
20+
"data/road.zip",
21+
"058bdc549d0fc5bfb6deaef138e48758ca79ae20df79c2fb4c40cb878f48bfd8",
22+
),]
2523

2624
function verify(path::AbstractString, hash::AbstractString)
2725
@assert occursin(r"^[0-9a-f]{64}$", hash)

test/test_tables.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ using Tables
101101
function clean_test_dataset_files()
102102
for (drvshortname, file_extension) in
103103
TEST_DS_DRIVERS_FILE_EXTENSIONS
104+
104105
isfile(
105106
joinpath(
106107
@__DIR__,
@@ -418,7 +419,7 @@ using Tables
418419
tupleoftuples_equal = (
419420
(x, y) ->
420421
length(x) == length(y) &&
421-
all([all(x[i] .=== y[i]) for i in 1:length(x)])
422+
all([all(x[i] .=== y[i]) for i in 1:length(x)])
422423
)
423424

424425
"""

0 commit comments

Comments
 (0)