mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Assert specifically against True
This commit is contained in:
parent
94f233cefa
commit
845853c1bd
2 changed files with 2 additions and 2 deletions
|
@ -23,4 +23,4 @@ def modules(loaders, _formula):
|
|||
def test_sudoers_formula(modules):
|
||||
ret = modules.state.sls("sudoers")
|
||||
for staterun in ret:
|
||||
assert staterun.result
|
||||
assert staterun.result is True
|
||||
|
|
|
@ -23,4 +23,4 @@ def modules(loaders, _formula):
|
|||
def test_vim_formula(modules):
|
||||
ret = modules.state.sls("vim")
|
||||
for staterun in ret:
|
||||
assert staterun.result
|
||||
assert staterun.result is True
|
||||
|
|
Loading…
Add table
Reference in a new issue