We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15349dd commit 2d79cb0Copy full SHA for 2d79cb0
services/invitations/tests/unit/test_invitations.py
@@ -72,8 +72,8 @@ def test_create_and_decrypt_invitation(
72
base_url=faker.url(),
73
default_product=default_product,
74
)
75
- assert invitation_link.fragment
76
- query_params = dict(parse.parse_qsl(URL(invitation_link.fragment).query))
+ assert URL(invitation_link).fragment
+ query_params = dict(parse.parse_qsl((URL(URL(invitation_link).fragment).query)))
77
78
# will raise TokenError or ValidationError
79
invitation = decrypt_invitation(
0 commit comments