Skip to content

Commit 198016f

Browse files
committed
Fix styling of example JSON
1 parent c57e7cf commit 198016f

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

test_pytest.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ def test_experience():
2020
Check that it returns the new experience in that list
2121
'''
2222
example_experience = {
23+
"title": "Software Developer",
2324
"company": "A Cooler Company",
24-
"description": "Writing JavaScript Code",
25-
"end_date": "Present",
26-
"logo": "example-logo.png",
2725
"start_date": "October 2022",
28-
"title": "Software Developer"
26+
"end_date": "Present",
27+
"description": "Writing JavaScript Code",
28+
"logo": "example-logo.png"
2929
}
3030

3131
item_id = app.test_client().post('/resume/experience',
@@ -46,7 +46,7 @@ def test_education():
4646
"start_date": "October 2022",
4747
"end_date": "August 2024",
4848
"grade": "86%",
49-
"logo": "example-logo.png",
49+
"logo": "example-logo.png"
5050
}
5151
item_id = app.test_client().post('/resume/education',
5252
json=example_education).json['id']

0 commit comments

Comments
 (0)