PY-29608: Sync with teamcity + tests

Use ``keyword`` instead of ``step_type``
(See jb_behave_formatter.py)
This commit is contained in:
Ilya.Kazakevich
2018-04-19 22:07:06 +03:00
parent 9131a8a086
commit 39a6dfefce
@@ -17,7 +17,7 @@ from teamcity.messages import TeamcityServiceMessages
def _step_name(step):
assert isinstance(step, Step)
return step.step_type.capitalize() + " " + step.name.strip()
return step.keyword + " " + step.name.strip()
def _suite_name(suite):