File tree Expand file tree Collapse file tree 2 files changed +6
-7
lines changed Expand file tree Collapse file tree 2 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -16,12 +16,10 @@ julia> open(filepath/filename) do f
16
16
end
17
17
```
18
18
"""
19
- remotefiles = [
20
- (
21
- " data/road.zip" ,
22
- " 058bdc549d0fc5bfb6deaef138e48758ca79ae20df79c2fb4c40cb878f48bfd8" ,
23
- ),
24
- ]
19
+ remotefiles = [(
20
+ " data/road.zip" ,
21
+ " 058bdc549d0fc5bfb6deaef138e48758ca79ae20df79c2fb4c40cb878f48bfd8" ,
22
+ ),]
25
23
26
24
function verify (path:: AbstractString , hash:: AbstractString )
27
25
@assert occursin (r" ^[0-9a-f]{64}$" , hash)
Original file line number Diff line number Diff line change @@ -101,6 +101,7 @@ using Tables
101
101
function clean_test_dataset_files ()
102
102
for (drvshortname, file_extension) in
103
103
TEST_DS_DRIVERS_FILE_EXTENSIONS
104
+
104
105
isfile (
105
106
joinpath (
106
107
@__DIR__ ,
@@ -418,7 +419,7 @@ using Tables
418
419
tupleoftuples_equal = (
419
420
(x, y) ->
420
421
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)])
422
423
)
423
424
424
425
"""
You can’t perform that action at this time.
0 commit comments