From 2f9a0ccba58f50f715c896a8bc0d360a32d39d5d Mon Sep 17 00:00:00 2001 From: Eliot Jordan Date: Tue, 1 Oct 2024 09:45:24 -0500 Subject: [PATCH] Update gdal spec with new options --- .../geo_derivatives/processors/base_geo_processor_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/derivative_services/geo_derivatives/processors/base_geo_processor_spec.rb b/spec/derivative_services/geo_derivatives/processors/base_geo_processor_spec.rb index db672ae898..889080b059 100644 --- a/spec/derivative_services/geo_derivatives/processors/base_geo_processor_spec.rb +++ b/spec/derivative_services/geo_derivatives/processors/base_geo_processor_spec.rb @@ -73,7 +73,7 @@ def source_path; end describe "#warp" do it "executes a reproject command" do - command = "gdalwarp -q -t_srs EPSG:4326 \"files/geo.tif\" output/geo.png -co TILED=YES -co COMPRESS=NONE" + command = "gdalwarp -q -t_srs EPSG:4326 \"files/geo.tif\" output/geo.png -co COMPRESS=NONE" processor.class.warp(file_name, output_file, options) expect(processor.class).to have_received(:execute).with command end