Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 83fe897

Browse files
authored
Merge pull request auth0#40 from elpaso/master
Fixes auth0#39
2 parents 319ab48 + 1c4c208 commit 83fe897

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

auth0/v2/authentication/users.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,5 +46,5 @@ def tokeninfo(self, jwt):
4646
return self.post(
4747
url='https://%s/tokeninfo' % self.domain,
4848
data={'id_token': jwt},
49-
headers={'Content-Type: application/json'}
49+
headers={'Content-Type': 'application/json'}
5050
)

auth0/v2/test/authentication/test_users.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ def test_tokeninfo(self, mock_post):
2727
mock_post.assert_called_with(
2828
url='https://my.domain.com/tokeninfo',
2929
data={'id_token': 'jwtoken'},
30-
headers={'Content-Type: application/json'}
30+
headers={'Content-Type': 'application/json'}
3131
)

0 commit comments

Comments
 (0)