Skip to content

Commit

Permalink
change expected shape after changing proba layer, but this is not the…
Browse files Browse the repository at this point in the history
… actually correct shape, resolution is too high

Open-EO/openeo-geopyspark-driver#260
  • Loading branch information
jdries committed Mar 7, 2023
1 parent 99f4aaf commit bbe0452
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,8 @@ def test_cog_synchronous(auth_connection, tmp_path):

out_file = tmp_path / "cog.tiff"
cube.download(out_file)
assert_geotiff_basics(out_file, expected_shape=(1, 1681, 1681))
#TODO: this shape, is wrong, caused by: https://github.com/Open-EO/openeo-geopyspark-driver/issues/260
assert_geotiff_basics(out_file, expected_shape=(1, 3642, 1821))
assert_cog(out_file)


Expand Down

0 comments on commit bbe0452

Please sign in to comment.