Skip to content

Commit

Permalink
Minor refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
HardNorth committed Jan 10, 2025
1 parent 639cdba commit f4cb20b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions robotframework_reportportal/listener.py
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ def variables(self) -> Variables:
self._variables = Variables()
return self._variables

def _process_keyword_skip(self):
def _process_keyword_remove(self):
if not self.variables.remove_keywords:
return

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

launch = Launch(self.variables.launch_name, attributes, self.variables.launch_attributes)
launch.doc = self.variables.launch_doc or launch.doc
Expand Down

0 comments on commit f4cb20b

Please sign in to comment.