Add new description field that is now expected
This commit is contained in:
parent
e19288ac07
commit
4df8963d2b
|
@ -117,6 +117,7 @@ def test_step_trace(pytester):
|
|||
"keyword": "Scenario",
|
||||
"line_number": 5,
|
||||
"name": "Passing",
|
||||
"description": "",
|
||||
"steps": [
|
||||
{
|
||||
"duration": OfType(float),
|
||||
|
@ -155,6 +156,7 @@ def test_step_trace(pytester):
|
|||
"keyword": "Scenario",
|
||||
"line_number": 10,
|
||||
"name": "Failing",
|
||||
"description": "",
|
||||
"steps": [
|
||||
{
|
||||
"duration": OfType(float),
|
||||
|
@ -192,6 +194,7 @@ def test_step_trace(pytester):
|
|||
"keyword": "Scenario Outline",
|
||||
"line_number": 14,
|
||||
"name": "Outlined",
|
||||
"description": "",
|
||||
"steps": [
|
||||
{
|
||||
"duration": OfType(float),
|
||||
|
@ -237,6 +240,7 @@ def test_step_trace(pytester):
|
|||
"keyword": "Scenario Outline",
|
||||
"line_number": 14,
|
||||
"name": "Outlined",
|
||||
"description": "",
|
||||
"steps": [
|
||||
{
|
||||
"duration": OfType(float),
|
||||
|
|
Loading…
Reference in New Issue