Skip to content

Commit 6d3d2fd

Browse files
committed
chore: Remove deprecated __dict__ print
1 parent b8c65c2 commit 6d3d2fd

3 files changed

Lines changed: 0 additions & 4 deletions

File tree

application-templates/base/test/api/test_st.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,4 @@
1313
@schema.include(path="/ping").parametrize()
1414
def test_ping(case):
1515
response = case.call()
16-
pprint(response.__dict__)
1716
assert response.status_code == 200, "this api errors on purpose"

application-templates/django-base/api/test_st.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
@schema.include(path="/ping").parametrize()
1818
def test_ping(case):
1919
response = case.call()
20-
pprint(response.__dict__)
2120
assert response.status_code == 200, "this api errors on purpose"
2221

2322

applications/samples/test/api/test_st.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,12 @@
1313
@schema.include(path="/error").parametrize()
1414
def test_api(case):
1515
response = case.call()
16-
pprint(response.__dict__)
1716
assert response.status_code >= 500, "this api errors on purpose"
1817

1918

2019
@schema.include(path="/valid").parametrize()
2120
def test_bearer(case):
2221
response = case.call()
23-
2422
case.validate_response(response, checks=(response_schema_conformance,))
2523

2624

0 commit comments

Comments
 (0)