test-runner: fix check for phonesim

This got changed to use which, but not updated to remove the
list argument.
This commit is contained in:
James Prestwood 2022-04-06 15:08:55 -07:00 committed by Denis Kenzior
parent cec5fab9b3
commit 5453f71a7c
1 changed files with 1 additions and 1 deletions

View File

@ -461,7 +461,7 @@ class TestContext(Namespace):
os.environ['IWD_SIM_KEYS'] = sim_keys
return
if not shutil.which('ofonod') or not shutil.which(['phonesim']):
if not shutil.which('ofonod') or not shutil.which('phonesim'):
print("Ofono or Phonesim not found, skipping test")
return