From 7cf0d3c478d11c3acf08ef4ca3bf5db4aa87fdea Mon Sep 17 00:00:00 2001 From: Roy Lane Date: Mon, 2 Dec 2024 15:01:39 -0500 Subject: [PATCH] smoke_test: remove default value for "subjectemail" in test_scubagoggles_output() --- scubagoggles/Testing/Functional/SmokeTests/smoke_test.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scubagoggles/Testing/Functional/SmokeTests/smoke_test.py b/scubagoggles/Testing/Functional/SmokeTests/smoke_test.py index 0ae146f2..296d6f0a 100644 --- a/scubagoggles/Testing/Functional/SmokeTests/smoke_test.py +++ b/scubagoggles/Testing/Functional/SmokeTests/smoke_test.py @@ -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