aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Wayne Parrott <jonwayne@google.com>2016-07-27 15:09:51 -0700
committerGitHub <noreply@github.com>2016-07-27 15:09:51 -0700
commit1e4a7d6b9527068d67f5f13b08932f9b75dcaea0 (patch)
tree1048f7e95b1fb4292edcfc765cb0976932227344
parent323e5fabd4bd7f7963e63bf62864abeae7c60bc4 (diff)
downloadoauth2client-1e4a7d6b9527068d67f5f13b08932f9b75dcaea0.tar.gz
Fix system test reference to GOOGLE_TOKEN_URI. (#573)
-rw-r--r--scripts/run_system_tests.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/run_system_tests.py b/scripts/run_system_tests.py
index 535a1ba..ce99e7c 100644
--- a/scripts/run_system_tests.py
+++ b/scripts/run_system_tests.py
@@ -18,6 +18,7 @@ import os
import httplib2
from six.moves import http_client
+import oauth2client
from oauth2client import client
from oauth2client.service_account import ServiceAccountCredentials
@@ -89,7 +90,7 @@ def run_user_json():
client_secret=client_credentials['client_secret'],
refresh_token=client_credentials['refresh_token'],
token_expiry=None,
- token_uri=client.GOOGLE_TOKEN_URI,
+ token_uri=oauth2client.GOOGLE_TOKEN_URI,
user_agent='Python client library',
)