Skip to content

Commit

Permalink
Format .jl files (#438)
Browse files Browse the repository at this point in the history
Co-authored-by: yeesian <[email protected]>
  • Loading branch information
github-actions[bot] and yeesian authored Oct 18, 2024
1 parent 6f6eff7 commit 3cb97a1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
10 changes: 6 additions & 4 deletions benchmark/remotefiles.jl
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,12 @@ julia> open(filepath/filename) do f
end
```
"""
remotefiles = [(
"data/road.zip",
"058bdc549d0fc5bfb6deaef138e48758ca79ae20df79c2fb4c40cb878f48bfd8",
),]
remotefiles = [
(
"data/road.zip",
"058bdc549d0fc5bfb6deaef138e48758ca79ae20df79c2fb4c40cb878f48bfd8",
),
]

function verify(path::AbstractString, hash::AbstractString)
@assert occursin(r"^[0-9a-f]{64}$", hash)
Expand Down
3 changes: 1 addition & 2 deletions test/test_tables.jl
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@ using Tables
function clean_test_dataset_files()
for (drvshortname, file_extension) in
TEST_DS_DRIVERS_FILE_EXTENSIONS

isfile(
joinpath(
@__DIR__,
Expand Down Expand Up @@ -419,7 +418,7 @@ using Tables
tupleoftuples_equal = (
(x, y) ->
length(x) == length(y) &&
all([all(x[i] .=== y[i]) for i in 1:length(x)])
all([all(x[i] .=== y[i]) for i in 1:length(x)])
)

"""
Expand Down

0 comments on commit 3cb97a1

Please sign in to comment.