From 449a00d2b2964a7f0f1417d402a652a95c0e01aa Mon Sep 17 00:00:00 2001 From: Philipp Stephani Date: Sat, 23 Sep 2017 13:40:47 +0200 Subject: [PATCH] =?utf8?q?Don=E2=80=99t=20test=20the=20value=20of=20the=20?= =?utf8?q?internal=20property=20=E2=80=98composition=E2=80=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Fixes #246 --- tests/markdown-test.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/markdown-test.el b/tests/markdown-test.el index 1e7086a..2081dda 100644 --- a/tests/markdown-test.el +++ b/tests/markdown-test.el @@ -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." @@ -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." -- 2.11.4.GIT