Skip to content

Commit

Permalink
Chage position of headers in the test output
Browse files Browse the repository at this point in the history
  • Loading branch information
davidesner committed May 28, 2024
1 parent c723405 commit 8bfc3fd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions python-sync-actions/src/component.py
Original file line number Diff line number Diff line change
Expand Up @@ -414,14 +414,14 @@ def test_request(self):
"response": {
"status_code": self._final_response.status_code,
"reason": self._final_response.reason,
"headers": dict(self._final_response.headers),
"data": response_data
"data": response_data,
"headers": dict(self._final_response.headers)
},
"request": {
"url": self._final_response.request.url,
"method": self._final_response.request.method,
"headers": dict(self._final_response.request.headers),
"data": body
"data": body,
"headers": dict(self._final_response.request.headers)
},
"records": results,
"debug_log": log
Expand Down

0 comments on commit 8bfc3fd

Please sign in to comment.