Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Don’t test the value of the internal property ‘composition’ #258

Merged
merged 1 commit into from
Sep 23, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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