🔇 Remove debugging prints

This commit is contained in:
Sebastián Ramírez 2018-12-22 08:21:02 +04:00
parent 23ef570bf6
commit b38fb937b0
3 changed files with 0 additions and 9 deletions

View File

@ -143,6 +143,5 @@ item_id_not_int = {
)
def test_post_body(path, body, expected_status, expected_response):
response = client.put(path, json=body)
print(response.text)
assert response.status_code == expected_status
assert response.json() == expected_response

View File

@ -1,5 +1,3 @@
import sys
import pytest
from starlette.testclient import TestClient
@ -8,8 +6,6 @@ from body_schema.tutorial001 import app
client = TestClient(app)
print(sys.path)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},

View File

@ -1,5 +1,3 @@
import sys
import pytest
from starlette.testclient import TestClient
@ -8,8 +6,6 @@ from header_params.tutorial001 import app
client = TestClient(app)
print(sys.path)
openapi_schema = {
"openapi": "3.0.2",
"info": {"title": "Fast API", "version": "0.1.0"},