mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Rename horribly named function.
This commit is contained in:
@@ -1015,12 +1015,12 @@ def check_binary_path_or_skip_test(cls, utility_name):
|
||||
)
|
||||
)
|
||||
|
||||
from pgadmin.utils import is_utility_exists
|
||||
from pgadmin.utils import does_utility_exist
|
||||
binary_path = os.path.join(
|
||||
cls.server['default_binary_paths'][cls.server['type']],
|
||||
utility_name
|
||||
)
|
||||
retVal = is_utility_exists(binary_path)
|
||||
retVal = does_utility_exist(binary_path)
|
||||
if retVal is not None:
|
||||
cls.skipTest(retVal)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user