aboutsummaryrefslogtreecommitdiff
path: root/test-org-link-edit.el
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2017-03-03 00:10:00 -0500
committerKyle Meyer <kyle@kyleam.com>2017-03-03 00:29:36 -0500
commit5dd5901cf6850f2bfdba64c896d10b017633600e (patch)
treea475230f48ed84b9d463fd562079ea6a310151d5 /test-org-link-edit.el
parent99009e8c5ec706b7aa1da6d0f6818c4f78567d40 (diff)
downloadorg-link-edit-5dd5901cf6850f2bfdba64c896d10b017633600e.tar.gz
org-link-edit--get-link-data: Rename to drop "get"
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 6cf936a..893cec5 100644
--- a/test-org-link-edit.el
+++ b/test-org-link-edit.el
@@ -514,17 +514,17 @@ website"
;;; Other
(ert-deftest test-org-link-edit/get-link-data ()
- "Test `org-link-edit--get-link-data'."
+ "Test `org-link-edit--link-data'."
;; Plain link
(cl-multiple-value-bind (beg end link desc)
(org-test-with-temp-text "http://orgmode.org/"
- (org-link-edit--get-link-data))
+ (org-link-edit--link-data))
(should (string= link "http://orgmode.org/"))
(should-not desc))
;; Bracket link
(cl-multiple-value-bind (beg end link desc)
(org-test-with-temp-text "\[\[http://orgmode.org/\]\[org\]\]"
- (org-link-edit--get-link-data))
+ (org-link-edit--link-data))
(should (string= link "http://orgmode.org/"))
(should (string= desc "org"))))