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 e7d82ee commit d470a3aCopy full SHA for d470a3a
python/example-pytest-selfie/tests/selfie_settings.py
@@ -13,7 +13,8 @@ def web_selfie(response: TestResponse) -> StringSelfie:
13
redirect_reason = REDIRECTS.get(response.status_code)
14
if redirect_reason is not None:
15
actual = Snapshot.of(
16
- f"REDIRECT {response.status_code} {redirect_reason} to {response.headers.get("Location")}"
+ f"REDIRECT {response.status_code} {redirect_reason} to "
17
+ + response.headers.get("Location")
18
)
19
else:
20
actual = Snapshot.of(response.data.decode()).plus_facet(
0 commit comments