mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Fix failing unit tests
This commit is contained in:
parent
209648fe9c
commit
f611ede1ea
2 changed files with 2 additions and 2 deletions
|
@ -21,7 +21,7 @@ def test_no_adb_command():
|
|||
ret = adb.__virtual__()
|
||||
|
||||
mock.assert_called_once_with("adb")
|
||||
assert not ret
|
||||
assert ret == (False, "adb is missing.")
|
||||
|
||||
|
||||
def test_with_adb_command():
|
||||
|
|
|
@ -21,7 +21,7 @@ def test_no_glxinfo_command():
|
|||
ret = glxinfo.__virtual__()
|
||||
|
||||
mock.assert_called_once_with("glxinfo")
|
||||
assert not ret
|
||||
assert ret == (False, "glxinfo is missing.")
|
||||
|
||||
|
||||
def test_with_glxinfo_command():
|
||||
|
|
Loading…
Add table
Reference in a new issue