diff options
author | Kyle Meyer <kyle@kyleam.com> | 2019-01-24 19:35:52 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2019-01-24 20:01:38 -0500 |
commit | a3ad9cd18a985fb8942769a18cc848ee3be860db (patch) | |
tree | d5fb4f7ddcfc893ae488a83890de62fcc45d259c | |
parent | bb1eb5b85d69fa973cc62d79c797b19a1792e5d9 (diff) | |
download | org-link-edit-a3ad9cd18a985fb8942769a18cc848ee3be860db.tar.gz |
tests: Fix typos in Org snippets
-rw-r--r-- | test-org-link-edit.el | 6 |
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)) |