Merge pull request #2424 from GSA/fix-existing-e2e-tests

Fix existing end-to-end tests
This commit is contained in:
Alex Janousek
2025-05-02 14:04:47 -04:00
committed by GitHub
19 changed files with 194 additions and 341 deletions

View File

@@ -49,7 +49,7 @@ def index():
return render_template(
"views/signedout.html",
sms_rate=CURRENT_SMS_RATE,
counts=status_api_client.get_count_of_live_services_and_organizations()
counts=status_api_client.get_count_of_live_services_and_organizations(),
)

View File

@@ -58,7 +58,7 @@ def view_job(service_id, job_id):
filter_args = parse_filter_args(request.args)
filter_args["status"] = set_status_filters(filter_args)
api_host_name = os.environ.get('API_HOST_NAME')
api_host_name = os.environ.get("API_HOST_NAME")
return render_template(
"views/jobs/job.html",