Skip to content

Commit

Permalink
update test for change coordinates_utm.h5 to coordinates_map.h5
Browse files Browse the repository at this point in the history
  • Loading branch information
mahmud1 committed Oct 16, 2024
1 parent d476f2a commit 24d79bd
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions tests/test_processing.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")), \
Expand Down Expand Up @@ -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")), \
Expand Down Expand Up @@ -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")), \
Expand Down Expand Up @@ -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")), \
Expand Down

0 comments on commit 24d79bd

Please sign in to comment.