Skip to content

Commit

Permalink
fix hist_config test
Browse files Browse the repository at this point in the history
  • Loading branch information
Courtney Peverley committed Jul 9, 2024
1 parent d394b92 commit d87e41f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/unit/test_hist_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def test_flat_user_nl_cam(self):
with open(out_source, 'w', encoding='utf-8') as nl_file:
hist_configs.output_class_namelist(nl_file)
for key in sorted(hist_configs.keys()):
hist_configs[key].output_config_namelist(nl_file)
hist_configs[key].output_config_namelist(nl_file, logger=_LOGGER)
# end for
# end with
# Make sure each output file was created
Expand Down Expand Up @@ -144,7 +144,7 @@ def test_multi_user_nl_cam(self):
with open(out_source, 'w', encoding='utf-8') as nl_file:
hist_configs.output_class_namelist(nl_file)
for key in sorted(hist_configs.keys()):
hist_configs[key].output_config_namelist(nl_file)
hist_configs[key].output_config_namelist(nl_file, logger=_LOGGER)
# end for
# end with
# Make sure each output file was created
Expand Down

0 comments on commit d87e41f

Please sign in to comment.