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 dd43202 commit 2c21399Copy full SHA for 2c21399
services/payments/tests/unit/test_services_payments_gateway.py
@@ -122,6 +122,7 @@ async def test_one_time_payment_workflow(
122
)
123
124
app_settings: ApplicationSettings = app.state.settings
125
+ assert isinstance(submission_link, URL)
126
assert submission_link.host == URL(f"{app_settings.PAYMENTS_GATEWAY_URL}").host
127
128
# cancel
@@ -161,6 +162,7 @@ async def test_payment_methods_workflow(
161
162
163
164
165
+ assert isinstance(form_link, URL)
166
assert form_link.host == URL(f"{app_settings.PAYMENTS_GATEWAY_URL}").host
167
168
# CRUD
0 commit comments