Skip to content

Commit 3afe98f

Browse files
committed
test fix
1 parent 124297c commit 3afe98f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

markdown_it/rules_inline/image.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Process ![image](<src> "title")
22

33
from .state_inline import StateInline
4-
from ..common.utils import isSpace, charCodeAt, normalizeReference, validateLink
5-
from ..common.normalize_url import normalizeLink
4+
from ..common.utils import isSpace, charCodeAt, normalizeReference
5+
from ..common.normalize_url import normalizeLink, validateLink
66

77

88
def image(state: StateInline, silent: bool):

tests/test_cmark_spec/test_spec.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def test_spec(entry):
2525
if entry["example"] in [
2626
171, # [foo]: /url\\bar\\*baz \"foo\\\"bar\\baz\"\n\n[foo]\n
2727
306, # <http://example.com?find=\\*>\n
28-
# 308, # [foo](/bar\\* \"ti\\*tle\")\n
28+
308, # [foo](/bar\\* \"ti\\*tle\")\n
2929
309, # [foo]\n\n[foo]: /bar\\* \"ti\\*tle\"\n
3030
310, # ``` foo\\+bar\nfoo\n```\n
3131
502, # [link](/url \"title \\\"&quot;\")\n

0 commit comments

Comments
 (0)