Skip to content

Commit

Permalink
Merge pull request #318 from jackdewinter/issue-293
Browse files Browse the repository at this point in the history
#299 - Fixed last is…
  • Loading branch information
jackdewinter committed Mar 13, 2022
2 parents 9f21cd0 + 55f1bbd commit 524c38e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion publish/test-results.json
Expand Up @@ -615,7 +615,7 @@
"totalTests": 72,
"failedTests": 0,
"errorTests": 0,
"skippedTests": 1,
"skippedTests": 0,
"elapsedTimeInMilliseconds": 0
},
{
Expand Down
15 changes: 10 additions & 5 deletions test/nested_three/test_markdown_nested_three_ordered_ordered.py
Expand Up @@ -2214,7 +2214,6 @@ def test_nested_three_ordered_max_ordered_max_block_max_with_li1():


@pytest.mark.gfm
@pytest.mark.skip
def test_nested_three_ordered_max_ordered_max_block_max_with_li2():
"""
Verify that a nesting of ordered list, ordered list, block quote, with
Expand All @@ -2226,10 +2225,16 @@ def test_nested_three_ordered_max_ordered_max_block_max_with_li2():
1. > item"""
expected_tokens = [
"[olist(1,4):.:1:9: ]",
"[olist(1,10):.:1:15: :\n]",
"[block-quote(1,16): : > \n]",
"[para(1,18):\n ]",
"[text(1,18):list\n1. \a>\a>\a item::\n]",
"[olist(1,10):.:1:15: :]",
"[block-quote(1,16): : > ]",
"[para(1,18):]",
"[text(1,18):list:]",
"[end-para:::True]",
"[end-block-quote:::True]",
"[li(2,10):15: :1]",
"[block-quote(2,16): : > ]",
"[para(2,18):]",
"[text(2,18):item:]",
"[end-para:::True]",
"[end-block-quote:::True]",
"[end-olist:::True]",
Expand Down

0 comments on commit 524c38e

Please sign in to comment.