File tree Expand file tree Collapse file tree 2 files changed +0
-3
lines changed Expand file tree Collapse file tree 2 files changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -74,8 +74,6 @@ def test_create_and_fetch_work_issues(client):
74
74
url = urljoin (API_BASE_URL , f'work/{ work .id } /issues' )
75
75
result_get = client .get (url )
76
76
retrieved_issue_json = result_get .json [0 ]
77
- print ('-retrieved_issue_json--' ,retrieved_issue_json )
78
- print ('-issue_data--' , issue_data )
79
77
assert "id" in retrieved_issue_json
80
78
assert retrieved_issue_json ["work_id" ] == work .id
81
79
assert retrieved_issue_json ["title" ] == work_issue .title
Original file line number Diff line number Diff line change @@ -53,7 +53,6 @@ def factory_project_model(project_data: dict = TestProjectInfo.project1.value):
53
53
54
54
def factory_work_status_model (work_id , status_data : dict = TestStatus .status1 .value ):
55
55
"""Create and return a WorkStatus model instance."""
56
-
57
56
status = WorkStatus (
58
57
description = status_data ["description" ],
59
58
posted_date = status_data ["posted_date" ],
You can’t perform that action at this time.
0 commit comments