Skip to content
This repository has been archived by the owner on Feb 9, 2024. It is now read-only.

Commit

Permalink
Fix a left-over from the last merge.
Browse files Browse the repository at this point in the history
  • Loading branch information
bartfeenstra committed Nov 27, 2017
1 parent ff6994e commit 047226f
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions tk/tests/test_endpoints.py
Original file line number Diff line number Diff line change
Expand Up @@ -265,12 +265,7 @@ def testSuccessWithProcessedDocument(self, m):
query = {
'access_token': self._flask_app.auth.grant_access_token(user_name),
}
response = self._flask_app_client.get('/retrieve/%s' % process_id,
headers={
'Accept': 'text/xml',
}, query_string={
'access_token': self._flask_app.auth.grant_access_token(user_name),
})
response = self._flask_app_client.get('/retrieve/%s' % process_id, headers=headers, query_string=query)
self.assertEquals(response.status_code, 200)
self.assertEquals(response.get_data(as_text=True), PROFILE)

Expand Down

0 comments on commit 047226f

Please sign in to comment.