Skip to content

Commit 4fcc593

Browse files
committed
Fix tests
1 parent 7c8149b commit 4fcc593

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

behave_reportportal/behave_agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def convert_to_rp_status(behave_status: str) -> str:
5555
:param behave_status: behave test result status
5656
:return: ReportPortal test result status
5757
"""
58-
return STATUS_MAPPINGS.get(behave_status)
58+
return STATUS_MAPPINGS[behave_status]
5959

6060

6161
def check_rp_enabled(func: Callable) -> Callable:

0 commit comments

Comments
 (0)