This commit is contained in:
Beverly Nguyen
2025-07-22 10:07:41 -07:00
parent 6bf6dd9e29
commit 50226b5fa1
3 changed files with 4 additions and 2 deletions

View File

@@ -449,7 +449,7 @@
"filename": "tests/__init__.py", "filename": "tests/__init__.py",
"hashed_secret": "f8377c90fcfd699f0ddbdcb30c2c9183d2d933ea", "hashed_secret": "f8377c90fcfd699f0ddbdcb30c2c9183d2d933ea",
"is_verified": false, "is_verified": false,
"line_number": 388, "line_number": 389,
"is_secret": false "is_secret": false
} }
], ],
@@ -634,5 +634,5 @@
} }
] ]
}, },
"generated_at": "2025-07-21T23:33:47Z" "generated_at": "2025-07-22T17:07:31Z"
} }

View File

@@ -10,6 +10,7 @@ from flask import url_for
from flask.testing import FlaskClient from flask.testing import FlaskClient
from flask_login import login_user from flask_login import login_user
from app.enums import ServicePermission
from app.models.user import User from app.models.user import User
# Add itsdangerous to the libraries which freezegun ignores to avoid errors. # Add itsdangerous to the libraries which freezegun ignores to avoid errors.

View File

@@ -3,6 +3,7 @@ import uuid
import pytest import pytest
from flask import abort, url_for from flask import abort, url_for
from app.enums import ServicePermission
from app.models.user import User from app.models.user import User
from notifications_python_client.errors import HTTPError from notifications_python_client.errors import HTTPError
from tests import sample_uuid from tests import sample_uuid