aboutsummaryrefslogtreecommitdiff
path: root/test-org-link-edit.el
diff options
context:
space:
mode:
Diffstat (limited to 'test-org-link-edit.el')
-rw-r--r--test-org-link-edit.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/test-org-link-edit.el b/test-org-link-edit.el
index 27f864b..b7be08a 100644
--- a/test-org-link-edit.el
+++ b/test-org-link-edit.el
@@ -1,4 +1,4 @@
-;;; test-org-link-edit.el --- Tests for org-link-edit.el
+;;; test-org-link-edit.el --- Tests for org-link-edit.el -*- lexical-binding: t; -*-
;; Copyright (C) 2015-2020 Kyle Meyer <kyle@kyleam.com>
@@ -627,13 +627,13 @@ website"
(ert-deftest test-org-link-edit/get-link-data ()
"Test `org-link-edit--link-data'."
;; Plain link
- (cl-multiple-value-bind (beg end link desc)
+ (cl-multiple-value-bind (_beg _end link desc)
(org-test-with-temp-text "https://orgmode.org/"
(org-link-edit--link-data))
(should (string= link "https://orgmode.org/"))
(should-not desc))
;; Bracket link
- (cl-multiple-value-bind (beg end link desc)
+ (cl-multiple-value-bind (_beg _end link desc)
(org-test-with-temp-text "\[\[https://orgmode.org/\]\[org\]\]"
(org-link-edit--link-data))
(should (string= link "https://orgmode.org/"))