Skip to content

Commit 99330e8

Browse files
committed
tiff_write.py: remove workaround now that libjxl/libjxl#4358 is fixed
1 parent 4e9faf3 commit 99330e8

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

autotest/gcore/tiff_write.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10695,11 +10695,7 @@ def test_tiff_write_jpegxl_band_combinations(cilist, dtype, copts, tmp_vsimem):
1069510695
src_ds = gdal.GetDriverByName("MEM").Create("", 64, 64, 6)
1069610696
for b in range(6):
1069710697
bnd = src_ds.GetRasterBand(b + 1)
10698-
if dtype == gdal.GDT_Float32:
10699-
# using bnd.Fill(b+1) fails since https://github.com/libjxl/libjxl/issues/4358
10700-
bnd.Fill((b + 1) / 6.0)
10701-
else:
10702-
bnd.Fill(b + 1)
10698+
bnd.Fill(b + 1)
1070310699
bnd.FlushCache()
1070410700

1070510701
jpegxl_drv = gdal.GetDriverByName("JPEGXL")

0 commit comments

Comments
 (0)