Skip to content

Commit

Permalink
style(python): format test files
Browse files Browse the repository at this point in the history
  • Loading branch information
LeonardHd committed Nov 13, 2023
1 parent 30c5f44 commit efa809a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/python/tests/models/activities/base/test_activity.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@
],
)
def test_dependency_conditions_when_called_returns_expected(
required_condition: str, actual_condition: str, expected: bool,
required_condition: str,
actual_condition: str,
expected: bool,
) -> None:
# Arrange
pipeline_activity = Activity(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ def test_when_evaluated_should_evaluate_expression() -> None:
[(True, "setVariableActivity1"), (False, "setVariableActivity2")],
)
def test_when_evaluated_should_evaluate_correct_child_activities(
expression_outcome: bool, expected_activity_name: str,
expression_outcome: bool,
expected_activity_name: str,
) -> None:
# Arrange
test_framework = TestFramework()
Expand Down

0 comments on commit efa809a

Please sign in to comment.