@@ -36,9 +36,9 @@ class GherkinTerminalReporter(TerminalReporter):
36
36
def __init__ (self , config ):
37
37
super ().__init__ (config )
38
38
39
- def _write_tags (self , tags : list , prefix : str = '' ):
40
- tags_string = ', ' .join (tags )
41
- return prefix + '(' + tags_string + ')'
39
+ def _write_tags (self , tags : list , prefix : str = "" ):
40
+ tags_string = ", " .join (tags )
41
+ return prefix + "(" + tags_string + ")"
42
42
43
43
def pytest_runtest_logreport (self , report ):
44
44
rep = report
@@ -85,7 +85,7 @@ def pytest_runtest_logreport(self, report):
85
85
self ._tw .write ("Feature: " , ** feature_markup )
86
86
self ._tw .write (report .scenario ["feature" ]["name" ], ** feature_markup )
87
87
self ._tw .write ("\n " )
88
- self ._tw .write (self ._write_tags (prefix = ' ' , tags = report .scenario ["tags" ]), ** tag_markup )
88
+ self ._tw .write (self ._write_tags (prefix = " " , tags = report .scenario ["tags" ]), ** tag_markup )
89
89
self ._tw .write ("\n " )
90
90
self ._tw .write (" Scenario: " , ** scenario_markup )
91
91
self ._tw .write (report .scenario ["name" ], ** scenario_markup )
0 commit comments