From 1d36043809cae3cbb5338e5bea47073bc56e082c Mon Sep 17 00:00:00 2001 From: Dmitry Gutov Date: Sun, 5 Sep 2021 02:44:08 +0300 Subject: [PATCH] Fix test on machines with Bzr not set up * test/lisp/vc/vc-tests.el (vc-test--version-diff): Add EMAIL= to the environment to avoid potential failure. --- test/lisp/vc/vc-tests.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/lisp/vc/vc-tests.el b/test/lisp/vc/vc-tests.el index 99de0d88240..39a68275a03 100644 --- a/test/lisp/vc/vc-tests.el +++ b/test/lisp/vc/vc-tests.el @@ -615,7 +615,9 @@ This checks also `vc-backend' and `vc-responsible-backend'." (when (eq backend 'Bzr) (setq tempdir (make-temp-file "vc-test--version-diff" t) process-environment (cons (format "BZR_HOME=%s" tempdir) - process-environment))) + (cons + "EMAIL=john@doe.ee" + process-environment)))) (unwind-protect (progn -- 2.39.2