Skip to content

Commit 1606657

Browse files
committed
SCP-4 fix tests
1 parent 7dbe72b commit 1606657

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

skylab_studio/studio_client.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,6 @@ def _api_request(self, endpoint, http_method, **kwargs):
160160
}
161161
return formatted_response
162162

163-
print('RETURNING RESPONSE JSON')
164163
return response.json()
165164

166165
###### JOB ENDPOINTS ######

test/test_api.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,10 @@ def test_create_job(api):
5555
'profile_id': 24
5656
}
5757

58-
print('yooooOOooOooo')
5958
result = api.create_job(payload=job_payload)
60-
print('PRINTING', result)
6159
global job_id
6260

63-
# job_id = result['id']
61+
job_id = result['id']
6462
assert job_id is not None
6563
assert result is not None
6664

0 commit comments

Comments
 (0)