Skip to content

Commit

Permalink
smoke_test: remove default value for "subjectemail" in test_scubagogg…
Browse files Browse the repository at this point in the history
…les_output()
  • Loading branch information
rlxdev committed Dec 2, 2024
1 parent 7a05d46 commit 7cf0d3c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scubagoggles/Testing/Functional/SmokeTests/smoke_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@ class SmokeTest:
"""

@staticmethod
def test_scubagoggles_output(subjectemail: str = None):
def test_scubagoggles_output(subjectemail: str):
"""
Test if the `scubagoggles gws` command generates correct output for
all baselines.
Args:
subjectemail: (optional) The email address of a user for the
service account. If not specified, the user's OAuth credentials
are used instead.
subjectemail: The email address of a user for the service account.
If None (or the empty string), the user's OAuth credentials are
used instead.
"""

svc_account_option = (f' --subjectemail {subjectemail}' if subjectemail
Expand Down

0 comments on commit 7cf0d3c

Please sign in to comment.