Blame SOURCES/test-sys-executable.patch

8e4e9b
diff -U3 -r jsonschema-2.6.0-orig/jsonschema/tests/test_jsonschema_test_suite.py jsonschema-2.6.0/jsonschema/tests/test_jsonschema_test_suite.py
8e4e9b
--- jsonschema-2.6.0-orig/jsonschema/tests/test_jsonschema_test_suite.py	2016-11-27 16:49:17.000000000 +0100
8e4e9b
+++ jsonschema-2.6.0/jsonschema/tests/test_jsonschema_test_suite.py	2018-05-30 15:29:44.840669853 +0200
8e4e9b
@@ -47,7 +47,7 @@
8e4e9b
 JSONSCHEMA_SUITE = os.path.join(SUITE, "bin", "jsonschema_suite")
8e4e9b
 
8e4e9b
 remotes_stdout = subprocess.Popen(
8e4e9b
-    ["python", JSONSCHEMA_SUITE, "remotes"], stdout=subprocess.PIPE,
8e4e9b
+    [sys.executable, JSONSCHEMA_SUITE, "remotes"], stdout=subprocess.PIPE,
8e4e9b
 ).stdout
8e4e9b
 
8e4e9b
 with closing(remotes_stdout):