@@ -6,14 +6,14 @@ using Base.Test
6
6
@testset " Small OME-TIFFs" begin
7
7
@testset " Single Channel OME-TIFF" begin
8
8
open (" testdata/tiffs/single-channel.ome.tif" ) do f
9
- s = Stream (format "TIFF " , f, f. name)
9
+ s = Stream (format "OMETIFF " , f, f. name)
10
10
img = OMETIFF. load (s)
11
11
@test size (img) == (167 , 439 )
12
12
end
13
13
end
14
14
@testset " Multi Channel OME-TIFF" begin
15
15
open (" testdata/tiffs/multi-channel.ome.tif" ) do f
16
- s = Stream (format "TIFF " , f, f. name)
16
+ s = Stream (format "OMETIFF " , f, f. name)
17
17
img = OMETIFF. load (s)
18
18
@test size (img) == (167 , 439 , 3 )
19
19
# check channel indexing
@@ -22,7 +22,7 @@ using Base.Test
22
22
end
23
23
@testset " Multi Channel Time Series OME-TIFF" begin
24
24
open (" testdata/tiffs/multi-channel-time-series.ome.tif" ) do f
25
- s = Stream (format "TIFF " , f, f. name)
25
+ s = Stream (format "OMETIFF " , f, f. name)
26
26
img = OMETIFF. load (s)
27
27
@test size (img) == (167 , 439 , 3 , 7 )
28
28
# check channel indexing
@@ -33,7 +33,7 @@ using Base.Test
33
33
end
34
34
@testset " Multi Channel Time Series OME-TIFF" begin
35
35
open (" testdata/tiffs/multi-channel-z-series.ome.tif" ) do f
36
- s = Stream (format "TIFF " , f, f. name)
36
+ s = Stream (format "OMETIFF " , f, f. name)
37
37
img = OMETIFF. load (s)
38
38
@test size (img) == (167 , 439 , 5 , 3 )
39
39
# check channel indexing
0 commit comments