Fix system test reference to GOOGLE_TOKEN_URI. (#573)
This commit is contained in:
committed by
GitHub
parent
323e5fabd4
commit
1e4a7d6b95
@@ -18,6 +18,7 @@ import os
|
|||||||
import httplib2
|
import httplib2
|
||||||
from six.moves import http_client
|
from six.moves import http_client
|
||||||
|
|
||||||
|
import oauth2client
|
||||||
from oauth2client import client
|
from oauth2client import client
|
||||||
from oauth2client.service_account import ServiceAccountCredentials
|
from oauth2client.service_account import ServiceAccountCredentials
|
||||||
|
|
||||||
@@ -89,7 +90,7 @@ def run_user_json():
|
|||||||
client_secret=client_credentials['client_secret'],
|
client_secret=client_credentials['client_secret'],
|
||||||
refresh_token=client_credentials['refresh_token'],
|
refresh_token=client_credentials['refresh_token'],
|
||||||
token_expiry=None,
|
token_expiry=None,
|
||||||
token_uri=client.GOOGLE_TOKEN_URI,
|
token_uri=oauth2client.GOOGLE_TOKEN_URI,
|
||||||
user_agent='Python client library',
|
user_agent='Python client library',
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user