From f4c84af124091165c0666e37bb25f4d1e2299c4e Mon Sep 17 00:00:00 2001 From: Angeline Burrell Date: Tue, 19 Dec 2023 03:11:38 -0500 Subject: [PATCH] BUG: added missing index Added a missing index for the test list. --- pysatMadrigal/tests/test_instruments.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pysatMadrigal/tests/test_instruments.py b/pysatMadrigal/tests/test_instruments.py index 7bb6d8d..40a2110 100644 --- a/pysatMadrigal/tests/test_instruments.py +++ b/pysatMadrigal/tests/test_instruments.py @@ -69,7 +69,7 @@ def test_bad_los_value(self): if self.load_time not in inst.files.files.keys(): self.fake_file = os.path.join( inst.files.data_path, - self.inst_kwargs['inst_module'].supported_tags[inst.inst_id][ + self.inst_kwargs[0]['inst_module'].supported_tags[inst.inst_id][ inst.tag].format(file_type='hdf5').format( year=self.load_time.year, month=self.load_time.month, day=self.load_time.day, version=1))