Skip to content

Commit

Permalink
style: fix title property in LiveTests class
Browse files Browse the repository at this point in the history
  • Loading branch information
devin-ai-integration[bot] and natikgadzhi committed Feb 15, 2025
1 parent b66b1f7 commit 70af22c
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -541,7 +541,9 @@ def default_params(self) -> STEP_PARAMS:
"--durations": ["3"], # Show the 3 slowest tests in the report
}

title =f"Connector {self.test_suite.title()} Tests"
@property
def title(self) -> str:
return f"Connector {self.test_suite.title()} Tests"

def _test_command(self) -> List[str]:
"""
Expand Down

0 comments on commit 70af22c

Please sign in to comment.