Skip to content
This repository was archived by the owner on Oct 1, 2022. It is now read-only.

Commit 864703f

Browse files
committed
dummy commit
1 parent c877a8b commit 864703f

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

tests/test_decorators.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -115,15 +115,13 @@ def test_auth_decorator_integration_auth_disabled(self, mocker, client):
115115
mock.to_json.return_value = data
116116
with client.application.app_context():
117117
response: Response = client.get(f'servicex/transformation/{fake_transform_id}')
118-
print(response.data)
119118
assert response.status_code == 200
120119
assert response.json == data
121120

122121
def test_auth_decorator_integration_no_header(self):
123122
client = self._test_client(extra_config={'ENABLE_AUTH': True})
124123
with client.application.app_context():
125124
response: Response = client.get('servicex/transformation/123')
126-
print(response.data)
127125
assert response.status_code == 401
128126
assert response.json['message'] == 'Missing Authorization Header'
129127

@@ -155,7 +153,6 @@ def test_auth_decorator_integration_authorized(self, mocker, user):
155153
with client.application.app_context():
156154
response: Response = client.get(f'servicex/transformation/{fake_transform_id}',
157155
headers=self.fake_header())
158-
print(response.data)
159156
assert response.status_code == 200
160157
assert response.json == data
161158

0 commit comments

Comments
 (0)