Skip to content

Commit

Permalink
Fix error in output directory name for test "test_gdas_ics_from_aws"
Browse files Browse the repository at this point in the history
  • Loading branch information
mkavulich committed Jul 25, 2023
1 parent 168acac commit 21b5b19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_python/test_retrieve_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ def test_gdas_ics_from_aws(self):
with tempfile.TemporaryDirectory(dir=self.path) as tmp_dir:
os.chdir(tmp_dir)

out_path_tmpl = os.path.join(tmp_dir, "mem{{mem:03d}}")
out_path_tmpl = os.path.join(tmp_dir, "mem{mem:03d}")

# fmt: off
args = [
Expand Down

0 comments on commit 21b5b19

Please sign in to comment.