From 66173989219c902305de40463093bc5673cc1100 Mon Sep 17 00:00:00 2001 From: flan Date: Wed, 1 Nov 2017 04:06:06 +0100 Subject: [PATCH] Don't hardcode location of sqldiff --- tests/helpers/db_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/helpers/db_utils.py b/tests/helpers/db_utils.py index 0bae2ed..b95e612 100644 --- a/tests/helpers/db_utils.py +++ b/tests/helpers/db_utils.py @@ -52,7 +52,7 @@ def diff(left_db_path, right_db_path): :return: True if the specified databases differ, False else """ - command = ["/bin/sqldiff", left_db_path, right_db_path] + command = ["sqldiff", left_db_path, right_db_path] child_process = subprocess.Popen(command, shell=False,