path: python-briefcase_0.3.25-2/tests/integrations/android_sdk/ADB/test_pidof.py
def test_pidof_fail_exit_1(adb):
    """If adb.pidof() fails, it is interpreted as the process not existing."""
    adb.run = Mock(side_effect=subprocess.CalledProcessError(1, "adb shell"))
