Skip to content

Commit 8fdebd4

Browse files
Fix Python 3 test
1 parent 6f85a54 commit 8fdebd4

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

test/test_apikeys.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ def _build_request(self, url=None, json_header=False, method='GET', data=None):
3939
req.add_header('Authorization', 'Bearer ' + self.apikey)
4040
if json_header:
4141
req.add_header('Content-Type', 'application/json')
42-
print "url= " + req._Request__original
43-
print "headers= " + str(req.headers)
44-
print "data= " + json.dumps(data)
42+
# print "url= " + req._Request__original
43+
# print "headers= " + str(req.headers)
44+
# print "data= " + json.dumps(data)
4545
response = 200
4646
body = {"mock": "success"}
4747
return response, body

0 commit comments

Comments
 (0)