Skip to content

Commit

Permalink
Fix face in test case
Browse files Browse the repository at this point in the history
Thanks to Kévin Le Gouguec for catching the problem
in c812747.  See GH-172 for details.
  • Loading branch information
jrblevin committed Jun 13, 2017
1 parent c458a96 commit 71ccd7f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/markdown-test.el
Original file line number Diff line number Diff line change
Expand Up @@ -2887,7 +2887,8 @@ takes precedence)."
(ert-deftest test-markdown-font-lock/stars-in-code-in-blockquote ()
"Test asterisks in inline code in blockquote."
(markdown-test-string "> Quote with `**stars**`"
(should-not (markdown-range-property-any 17 21 'face '(markdown-italic-face)))
(should-not (markdown-range-property-any
17 21 'face '(markdown-italic-face markdown-bold-face)))
(markdown-test-range-has-face 15 23 'markdown-inline-code-face)))

(ert-deftest test-markdown-font-lock/two-bold-words-after-list ()
Expand Down

0 comments on commit 71ccd7f

Please sign in to comment.