Skip to content

Commit 869f08c

Browse files
committed
Fix tests
1 parent 2ecb3e2 commit 869f08c

3 files changed

Lines changed: 8 additions & 1 deletion

File tree

src/SentinelDataSource.jl

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
module SentinelDataSource
2+
using DimensionalData
3+
using Zarr: zopen
24

5+
function open_eopf(path)
6+
z = zopen(path)
7+
end
8+
#zopen()
39
# Write your package code here.
410

511
end

test/Project.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
[deps]
22
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
33
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
4+
Zarr = "0a941bbe-ad1d-11e8-39d9-ab76183a1d99"

test/runtests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ using Zarr
3131
end
3232
@testset "S2 L2A MSI" begin
3333
s2l2apath = "https://objectstore.eodc.eu:2222/e05ab01a9d56408d82ac32d69a5aae2a:sample-data/tutorial_data/cpm_v253/S2A_MSIL2A_20240101T102431_N0510_R065_T32TNT_20240101T144052.zarr"
34-
@test s2l2a = zopen(s2l2apath) isa Zgroup
34+
@test s2l2a = zopen(s2l2apath) isa ZGroup
3535
end
3636
end
3737

0 commit comments

Comments
 (0)