aboutsummaryrefslogtreecommitdiff
path: root/test-org-link-edit.el
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2019-01-24 19:35:52 -0500
committerKyle Meyer <kyle@kyleam.com>2019-01-24 20:01:38 -0500
commita3ad9cd18a985fb8942769a18cc848ee3be860db (patch)
treed5fb4f7ddcfc893ae488a83890de62fcc45d259c /test-org-link-edit.el
parentbb1eb5b85d69fa973cc62d79c797b19a1792e5d9 (diff)
downloadorg-link-edit-a3ad9cd18a985fb8942769a18cc848ee3be860db.tar.gz
tests: Fix typos in Org snippets
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 d330840..643e26c 100644
--- a/test-org-link-edit.el
+++ b/test-org-link-edit.el
@@ -556,9 +556,9 @@ website"
;; point is on whitespace.
(should
(string=
- "Here is\[\[http://orgmode.org/\]\[descrption\]\] Org's website "
+ "Here is\[\[http://orgmode.org/\]\[description\]\] Org's website "
(org-test-with-temp-text
- "Here is<point> Org's website \[\[http://orgmode.org/\]\[descrption\]\]"
+ "Here is<point> Org's website \[\[http://orgmode.org/\]\[description\]\]"
(org-link-edit-transport-next-link)
(buffer-string))))
;; Fail if point is on a link.
@@ -578,7 +578,7 @@ website"
;; Fail if link already has a description.
(should-error
(org-test-with-temp-text
- "Here is <point>Org's website \[\[http://orgmode.org/\]\[descrption\]\]"
+ "Here is <point>Org's website \[\[http://orgmode.org/\]\[description\]\]"
(org-link-edit-transport-next-link)
(buffer-string))
:type 'user-error))