emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/eglot 1612289ae4 18/33: Fix eglot--tramp-test-2 so it s


From: Stefan Kangas
Subject: [elpa] externals/eglot 1612289ae4 18/33: Fix eglot--tramp-test-2 so it skips without clangd
Date: Sat, 8 Jan 2022 12:30:49 -0500 (EST)

branch: externals/eglot
commit 1612289ae4fe12df69d3c9203f93c6c78ea490a3
Author: Simon Law <sfllaw@sfllaw.ca>
Commit: João Távora <joaotavora@gmail.com>

    Fix eglot--tramp-test-2 so it skips without clangd
    
    * eglot-tests.el (eglot--tramp-test-2): Skip test if clangd cannot be
    found.
    
    Copyright-paperwork-exempt: yes
---
 eglot-tests.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/eglot-tests.el b/eglot-tests.el
index 1309f87418..5379c1e6f5 100644
--- a/eglot-tests.el
+++ b/eglot-tests.el
@@ -1140,7 +1140,7 @@ are bound to the useful return values of
 
 (ert-deftest eglot--tramp-test-2 ()
   "Ensure LSP servers can be used over TRAMP."
-  (skip-unless (or (>= emacs-major-version 27) (executable-find "clangd")))
+  (skip-unless (and (>= emacs-major-version 27) (executable-find "clangd")))
   ;; Set up a loopback TRAMP method that’s just a shell so the remote
   ;; host is really just the local host.
   (let ((tramp-remote-path (cons 'tramp-own-remote-path tramp-remote-path))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]