Fix failing unit tests

This commit is contained in:
Pablo Suárez Hernández 2021-12-21 12:12:39 +00:00 committed by Megan Wilhite
parent 209648fe9c
commit f611ede1ea
2 changed files with 2 additions and 2 deletions

View file

@ -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():

View file

@ -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():