File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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' ]
You can’t perform that action at this time.
0 commit comments