Skip to content

Commit c211583

Browse files
Format backend
1 parent 93a51d3 commit c211583

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

app/backend/src/tests/test_bugs.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ def dud_post(url, auth, json):
4242
assert url == "https://api.github.com/repos/org/repo/issues"
4343
assert auth == ("user", "token")
4444

45-
expected_body = f"""
45+
expected_body = (
46+
f"""
4647
# subject
4748
## Description
4849
description
@@ -57,6 +58,7 @@ def dud_post(url, auth, json):
5758
**Screen resolution**: 1920x1080
5859
**Page**: page
5960
**User**: <not logged in>""".strip(),
61+
)
6062

6163
assert json == {
6264
"title": "subject",
@@ -102,7 +104,8 @@ def dud_post(url, auth, json):
102104
assert url == "https://api.github.com/repos/org/repo/issues"
103105
assert auth == ("user", "token")
104106

105-
expected_body = f"""
107+
expected_body = (
108+
f"""
106109
# subject
107110
## Description
108111
description
@@ -117,6 +120,7 @@ def dud_post(url, auth, json):
117120
**Screen resolution**: 390x844
118121
**Page**: page
119122
**User**: [@testing_user](http://localhost:3000/user/testing_user) (1)""".strip(),
123+
)
120124

121125
assert json == {
122126
"title": "subject",

0 commit comments

Comments
 (0)