Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
romsharon98 authored and eladkal committed Jan 3, 2025
1 parent 2646346 commit 7018a19
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions helm_tests/airflow_core/test_scheduler.py
Original file line number Diff line number Diff line change
Expand Up @@ -1011,7 +1011,7 @@ def test_default_automount_service_account_token(self, executor, default_automou
assert jmespath.search("automountServiceAccountToken", docs[0]) is default_automount_service_account

@pytest.mark.parametrize(
"executor, automount_service_account, shoud_automount_service_account",
"executor, automount_service_account, should_automount_service_account",
[
("LocalExecutor", True, None),
("CeleryExecutor", False, False),
Expand All @@ -1021,7 +1021,7 @@ def test_default_automount_service_account_token(self, executor, default_automou
],
)
def test_overridden_automount_service_account_token(
self, executor, automount_service_account, shoud_automount_service_account
self, executor, automount_service_account, should_automount_service_account
):
docs = render_chart(
values={
Expand All @@ -1035,7 +1035,7 @@ def test_overridden_automount_service_account_token(
},
show_only=["templates/scheduler/scheduler-serviceaccount.yaml"],
)
assert jmespath.search("automountServiceAccountToken", docs[0]) is shoud_automount_service_account
assert jmespath.search("automountServiceAccountToken", docs[0]) is should_automount_service_account


class TestSchedulerCreation:
Expand Down

0 comments on commit 7018a19

Please sign in to comment.