Skip to content

Commit

Permalink
Allow configs to be in different order
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidHuber-NOAA committed Nov 14, 2024
1 parent b779504 commit eeb03d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ def test_configuration_config_dir(tmp_path, create_configs):
def test_configuration_config_files(tmp_path, create_configs):
cfg = Configuration(tmp_path)
config_files = [str(tmp_path / 'config.file0'), str(tmp_path / 'config.file1')]
assert config_files == cfg.config_files
assert sorted(config_files) == sorted(cfg.config_files)


def test_find_config(tmp_path, create_configs):
Expand Down

0 comments on commit eeb03d6

Please sign in to comment.