Skip to content

Commit f4cb20b

Browse files
committed
Minor refactoring
1 parent 639cdba commit f4cb20b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

robotframework_reportportal/listener.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ def variables(self) -> Variables:
282282
self._variables = Variables()
283283
return self._variables
284284

285-
def _process_keyword_skip(self):
285+
def _process_keyword_remove(self):
286286
if not self.variables.remove_keywords:
287287
return
288288

@@ -327,7 +327,7 @@ def start_launch(self, attributes: Dict[str, Any], ts: Optional[Any] = None) ->
327327
:param attributes: Dictionary passed by the Robot Framework
328328
:param ts: Timestamp(used by the ResultVisitor)
329329
"""
330-
self._process_keyword_skip()
330+
self._process_keyword_remove()
331331

332332
launch = Launch(self.variables.launch_name, attributes, self.variables.launch_attributes)
333333
launch.doc = self.variables.launch_doc or launch.doc

0 commit comments

Comments
 (0)