mirror of
https://github.com/saltstack/salt.git
synced 2025-04-16 17:50:20 +00:00
Fix pre-commit
This commit is contained in:
parent
1fb68df156
commit
9bb624db5a
2 changed files with 4 additions and 2 deletions
|
@ -100,4 +100,6 @@ def test_help_log(salt_cli):
|
|||
ret = salt_cli.run("--help")
|
||||
count = 0
|
||||
# This can be dependent on COLUMNS environment variable
|
||||
assert "sensitive data: all, debug, garbage, profile, trace" in " ".join(ret.stdout.split())
|
||||
assert "sensitive data: all, debug, garbage, profile, trace" in " ".join(
|
||||
ret.stdout.split()
|
||||
)
|
||||
|
|
|
@ -25,7 +25,7 @@ def configure_loader_modules(minion_opts, tmp_path):
|
|||
def winrepo_remotes(minion_opts):
|
||||
remotes = set()
|
||||
# Legacy repo has been archived as of September 2024
|
||||
# remotes.update(minion_opts.get("winrepo_remotes", []))
|
||||
remotes.update(minion_opts.get("winrepo_remotes", []))
|
||||
remotes.update(minion_opts.get("winrepo_remotes_ng", []))
|
||||
return remotes
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue