Skip to content

Commit

Permalink
Force log level to debug
Browse files Browse the repository at this point in the history
  • Loading branch information
barneysowood committed Jan 17, 2025
1 parent c0c1440 commit 40175fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/pytests/integration/grains/test_custom.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def test_grains_passed_to_custom_grain(salt_call_cli):
"""
ret = salt_call_cli.run("saltutil.sync_grains", refresh=False)
assert ret.returncode == 0
ret = salt_call_cli.run("grains.item", "custom_grain_test")
ret = salt_call_cli.run("--log-level=debug", "grains.item", "custom_grain_test")
assert ret.returncode == 0
assert ret.data
assert ret.data["custom_grain_test"] == "itworked"

0 comments on commit 40175fe

Please sign in to comment.