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