diff --git a/test/io/geotiff.jl b/test/io/geotiff.jl index 872100c..eaca7d4 100644 --- a/test/io/geotiff.jl +++ b/test/io/geotiff.jl @@ -5,7 +5,7 @@ @test crs(gtb.geometry) <: Cartesian @test propertynames(gtb) == [:COLOR, :geometry] @test eltype(gtb.COLOR) <: Colorant - @test gtb.geometry isa Meshes.TransformedGrid + @test gtb.geometry isa TransformedGrid @test size(gtb.geometry) == (100, 100) # the "test_gray.tif" file is an upscale of a NaturalEarth file @@ -15,7 +15,7 @@ @test crs(gtb.geometry) <: Cartesian @test propertynames(gtb) == [:COLOR, :geometry] @test eltype(gtb.COLOR) <: Colorant - @test gtb.geometry isa Meshes.TransformedGrid + @test gtb.geometry isa TransformedGrid @test size(gtb.geometry) == (108, 108) # the "utm.tif" file is from the GeoTIFF/test-data repo @@ -25,7 +25,7 @@ @test crs(gtb.geometry) <: UTMNorth{17} @test propertynames(gtb) == [:COLOR, :geometry] @test eltype(gtb.COLOR) <: Colorant - @test gtb.geometry isa Meshes.TransformedGrid + @test gtb.geometry isa TransformedGrid @test size(gtb.geometry) == (100, 100) end diff --git a/test/io/images.jl b/test/io/images.jl index ba65954..833e4f3 100644 --- a/test/io/images.jl +++ b/test/io/images.jl @@ -1,7 +1,7 @@ @testset "Images" begin @testset "load" begin gtb = GeoIO.load(joinpath(datadir, "image.jpg")) - @test gtb.geometry isa Meshes.TransformedGrid + @test gtb.geometry isa TransformedGrid @test length(gtb.color) == length(gtb.geometry) end