aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test-org-link-edit.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/test-org-link-edit.el b/test-org-link-edit.el
index 422199c..b7be08a 100644
--- a/test-org-link-edit.el
+++ b/test-org-link-edit.el
@@ -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/"))