Skip to content

Commit 79055bc

Browse files
committed
ruff
1 parent 1ce2565 commit 79055bc

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

python/example-pytest-selfie/tests/facets_test.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ def test_homepage_v2(client):
4242
╔═ [status] ═╗
4343
200 OK""")
4444

45+
4546
def test_login_flow(client):
4647
web_selfie(client.get("/")).to_match_disk("1. not logged in").facet("md").to_be(
4748
"Please login"

python/example-pytest-selfie/tests/selfie_settings.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@ def _web_camera(response: TestResponse) -> Snapshot:
2626
)
2727

2828
if response.headers.get("Set-Cookie"):
29-
snapshot = snapshot.plus_facet("cookies", response.headers.get("Set-Cookie", ""))
29+
snapshot = snapshot.plus_facet(
30+
"cookies", response.headers.get("Set-Cookie", "")
31+
)
3032
return snapshot
3133

3234

0 commit comments

Comments
 (0)