Update markdown test for lists (#6131)

* Update for no line breaks in lists

* Updating line breaks in lists expected behavior
Этот коммит содержится в:
lindalumitchell
2017-04-18 08:26:25 -07:00
коммит произвёл Corey Hulen
родитель b1c47922ed
Коммит d5ae46c96c

Просмотреть файл

@@ -71,23 +71,22 @@ Verify that all list types render as expected.
- Two - Two
+ Three + Three
### Multi-Item Unordered List with Line Break ### Multi-Item Unordered List with Line Break (Break should not render)
**Expected:** **Expected:**
``` ```
• Item A • Item A
• Item B • Item B
• Item C • Item C
• Item D • Item D
``` ```
**Actual:** **Actual:**
Item A * Item A
Item B + Item B
Item C - Item C
Item D - Item D
### Nested Unordered List ### Nested Unordered List
@@ -184,7 +183,6 @@ Verify that all list types render as expected.
``` ```
1. One 1. One
• Two • Two
2. Two 2. Two
3. Three 3. Three
``` ```
@@ -192,7 +190,7 @@ Verify that all list types render as expected.
**Actual:** **Actual:**
1. One 1. One
- Two - Two
2. Two 2. Two
3. Three 3. Three
@@ -203,6 +201,7 @@ Verify that all list types render as expected.
``` ```
1. One 1. One
2. Two 2. Two
This text should be on a new line. This text should be on a new line.
``` ```
@@ -251,14 +250,20 @@ This text should be on a new line.
**Expected:** **Expected:**
``` ```
List A: List A:
1. One 1. One
List B: List B:
2. Two 2. Two
``` ```
List A: List A:
1. One 1. One
List B: List B:
2. Two 2. Two
### Lists with blank lines before and after ### Lists with blank lines before and after