Skip to content

Commit

Permalink
Use new config_base
Browse files Browse the repository at this point in the history
  • Loading branch information
danny-burrows committed Jan 3, 2025
1 parent 1b8ded7 commit 20455d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quetz/tests/test_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ def test_configure_logger(capsys):
def test_config_from_multiple_sources(config_dir, config_base):
config_path = os.path.join(config_dir, "config.toml")
with open(config_path, "w") as fid:
fid.write("[github]\nclient_id='abc'")
fid.write("\n".join([config_base, "[github]\nclient_id='abc'"]))

Config._instances = {}

Expand Down

0 comments on commit 20455d6

Please sign in to comment.