diff options
Diffstat (limited to 'testing/mozbase/moznetwork')
-rw-r--r-- | testing/mozbase/moznetwork/tests/test_moznetwork.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testing/mozbase/moznetwork/tests/test_moznetwork.py b/testing/mozbase/moznetwork/tests/test_moznetwork.py index 5be960cca1..16b49ffd2e 100644 --- a/testing/mozbase/moznetwork/tests/test_moznetwork.py +++ b/testing/mozbase/moznetwork/tests/test_moznetwork.py @@ -4,8 +4,8 @@ Unit-Tests for moznetwork """ import re +import shutil import subprocess -from distutils.spawn import find_executable from unittest import mock import mozinfo @@ -37,7 +37,7 @@ def ip_addresses(): cmd = None for command in commands: - if find_executable(command[0]): + if shutil.which(command[0]): cmd = command break else: |