From 24d79bde6bd76880c4a853845d2d32a97b4e1745 Mon Sep 17 00:00:00 2001 From: mahmud1 Date: Wed, 16 Oct 2024 13:02:20 +0200 Subject: [PATCH] update test for change coordinates_utm.h5 to coordinates_map.h5 --- tests/test_processing.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/tests/test_processing.py b/tests/test_processing.py index db520af..dbd2f08 100644 --- a/tests/test_processing.py +++ b/tests/test_processing.py @@ -103,8 +103,8 @@ def testUnwrappingTimeAndSpace(self): run(config=config, args=args, logger=self.logger) assert glob(os.path.join(config.general.output_path, "background_map.h5")), \ 'Processing failed (background_map.h5 not created).' - assert glob(os.path.join(config.general.output_path, "coordinates_utm.h5")), \ - 'Processing failed (coordinates_utm.h5 not created).' + assert glob(os.path.join(config.general.output_path, "coordinates_map.h5")), \ + 'Processing failed (coordinates_map.h5 not created).' assert glob(os.path.join(config.general.output_path, "ifg_network.h5")), \ 'Processing failed (ifg_network.h5 not created).' assert glob(os.path.join(config.general.output_path, "ifg_stack.h5")), \ @@ -176,8 +176,8 @@ def testUnwrappingSpace(self): run(config=config, args=args, logger=self.logger) assert glob(os.path.join(config.general.output_path, "background_map.h5")), \ 'Processing failed (background_map.h5 not created).' - assert glob(os.path.join(config.general.output_path, "coordinates_utm.h5")), \ - 'Processing failed (coordinates_utm.h5 not created).' + assert glob(os.path.join(config.general.output_path, "coordinates_map.h5")), \ + 'Processing failed (coordinates_map.h5 not created).' assert glob(os.path.join(config.general.output_path, "ifg_network.h5")), \ 'Processing failed (ifg_network.h5 not created).' assert glob(os.path.join(config.general.output_path, "ifg_stack.h5")), \ @@ -251,8 +251,8 @@ def testPhaseLinking(self): run(config=config, args=args, logger=self.logger) assert glob(os.path.join(config.general.output_path, "background_map.h5")), \ 'Processing failed (background_map.h5 not created).' - assert glob(os.path.join(config.general.output_path, "coordinates_utm.h5")), \ - 'Processing failed (coordinates_utm.h5 not created).' + assert glob(os.path.join(config.general.output_path, "coordinates_map.h5")), \ + 'Processing failed (coordinates_map.h5 not created).' assert glob(os.path.join(config.general.output_path, "ifg_network.h5")), \ 'Processing failed (ifg_network.h5 not created).' assert glob(os.path.join(config.general.output_path, "ifg_stack.h5")), \ @@ -326,8 +326,8 @@ def testMasking(self): run(config=config, args=args, logger=self.logger) assert glob(os.path.join(config.general.output_path, "background_map.h5")), \ 'Processing failed (background_map.h5 not created).' - assert glob(os.path.join(config.general.output_path, "coordinates_utm.h5")), \ - 'Processing failed (coordinates_utm.h5 not created).' + assert glob(os.path.join(config.general.output_path, "coordinates_map.h5")), \ + 'Processing failed (coordinates_map.h5 not created).' assert glob(os.path.join(config.general.output_path, "ifg_network.h5")), \ 'Processing failed (ifg_network.h5 not created).' assert glob(os.path.join(config.general.output_path, "ifg_stack.h5")), \