diff tests/test-merge-tools.t @ 46816:ea8bfd33c22a

tests: replace some `python` by `"$PYTHON"` to not only use Python 2 I deleted my `python` binary as a test and a few tests started failing. Differential Revision: https://phab.mercurial-scm.org/D10250
author Martin von Zweigbergk <martinvonz@google.com>
date Mon, 22 Mar 2021 13:14:11 -0700
parents 768056549737
children 6b1049d71c3e
line wrap: on
line diff
--- a/tests/test-merge-tools.t	Sat Mar 13 03:17:00 2021 +0100
+++ b/tests/test-merge-tools.t	Mon Mar 22 13:14:11 2021 -0700
@@ -1921,7 +1921,7 @@
 Binary files capability checking
 
   $ hg update -q -C 0
-  $ python <<EOF
+  $ "$PYTHON" <<EOF
   > with open('b', 'wb') as fp:
   >     fp.write(b'\x00\x01\x02\x03')
   > EOF
@@ -1929,7 +1929,7 @@
   $ hg commit -qm "add binary file (#1)"
 
   $ hg update -q -C 0
-  $ python <<EOF
+  $ "$PYTHON" <<EOF
   > with open('b', 'wb') as fp:
   >     fp.write(b'\x03\x02\x01\x00')
   > EOF