From: Stefan Kangas Date: Wed, 25 Oct 2023 21:23:45 +0000 (+0200) Subject: ; Fix webjump test after recent change X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=01242dda7799c8847e2ee33f5a47c1f6162f8c38;p=emacs.git ; Fix webjump test after recent change * test/lisp/net/webjump-tests.el (webjump-tests-url-fix): Adjust test after recent change to prefer HTTPS. --- diff --git a/test/lisp/net/webjump-tests.el b/test/lisp/net/webjump-tests.el index 42fa346a869..ffdebf2bb6f 100644 --- a/test/lisp/net/webjump-tests.el +++ b/test/lisp/net/webjump-tests.el @@ -58,7 +58,7 @@ (ert-deftest webjump-tests-url-fix () (should (equal (webjump-url-fix nil) "")) (should (equal (webjump-url-fix "/tmp/") "file:///tmp/")) - (should (equal (webjump-url-fix "gnu.org") "http://gnu.org/")) + (should (equal (webjump-url-fix "gnu.org") "https://gnu.org/")) (should (equal (webjump-url-fix "ftp.x.org") "ftp://ftp.x.org/")) (should (equal (webjump-url-fix "https://gnu.org") "https://gnu.org/")))