Skip to content

Commit 23e4d1c

Browse files
author
jamesalbert
committed
removed embarrassing print statements
1 parent c2e167a commit 23e4d1c

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

tests/test_sqlalchemy_data_layer.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -422,14 +422,10 @@ def schema_load_mock(*args):
422422
def test_compute_schema(person_schema):
423423
query_string = {'page[number]': '3', 'fields[person]': list()}
424424
qsm = QSManager(query_string, person_schema)
425-
# print(person_schema._declared_fields)
426425
with pytest.raises(InvalidInclude):
427426
flask_rest_jsonapi.schema.compute_schema(
428427
person_schema, dict(), qsm, ['id']
429428
)
430-
# print(person_schema.opts.type_)
431-
print(person_schema.opts.type_)
432-
print(qsm.fields)
433429
s = flask_rest_jsonapi.schema.compute_schema(
434430
person_schema, dict(only=list()), qsm, list()
435431
)

0 commit comments

Comments
 (0)