Skip to content

Commit

Permalink
Don’t test the value of the internal property ‘composition’
Browse files Browse the repository at this point in the history
Fixes #246
  • Loading branch information
phst authored and jrblevin committed Sep 23, 2017
1 parent 7050c4d commit 449a00d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/markdown-test.el
Original file line number Diff line number Diff line change
Expand Up @@ -2877,7 +2877,7 @@ takes precedence)."
(markdown-test-range-has-face 932 949 markdown-url-face)
(markdown-test-range-has-face 951 957 markdown-link-title-face)
(markdown-test-range-has-face 958 958 markdown-markup-face)
(should (equal '((26 . 8734)) (get-text-property 932 'composition))))))
(should (get-text-property 932 'composition)))))

(ert-deftest test-markdown-font-lock/hidden-urls-reference ()
"Test URL hiding and toggling."
Expand All @@ -2897,7 +2897,7 @@ takes precedence)."
(markdown-test-range-has-face 6 7 markdown-markup-face)
(markdown-test-range-has-face 8 27 markdown-reference-face)
(markdown-test-range-has-face 28 28 markdown-markup-face)
(should (equal '((20 . 8734)) (get-text-property 8 'composition))))))
(should (get-text-property 8 'composition)))))

(ert-deftest test-markdown-font-lock/snake-case-code-in-heading ()
"Test underscores in inline code in headings."
Expand Down

0 comments on commit 449a00d

Please sign in to comment.