Skip to content

Commit

Permalink
Fix tests in previous commit
Browse files Browse the repository at this point in the history
See GH-172.
  • Loading branch information
jrblevin committed Jun 13, 2017
1 parent 99623b7 commit c812747
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/markdown-test.el
Original file line number Diff line number Diff line change
Expand Up @@ -2876,14 +2876,14 @@ takes precedence)."

(ert-deftest test-markdown-font-lock/stars-in-code-in-heading ()
"Test asterisks in inline code in headings."
:expected-result :failed
(markdown-test-string "# Title with `char** foo, int* bar`"
(should-not (markdown-test-range-has-face 20 29 markdown-italic-face))))
(should-not (markdown-range-property-any 20 29 'face '(markdown-italic-face)))))

(ert-deftest test-markdown-font-lock/stars-in-code-in-blockquote ()
"Test asterisks in inline code in blockquote."
:expected-result :failed
(markdown-test-string "> Quote with `**stars**`"
(should-not (markdown-test-range-has-face 17 21 markdown-bold-face))))
(should-not (markdown-range-property-any 17 21 'face '(markdown-italic-face)))))

;;; Markdown Parsing Functions:

Expand Down

0 comments on commit c812747

Please sign in to comment.