From 1e4a7d6b9527068d67f5f13b08932f9b75dcaea0 Mon Sep 17 00:00:00 2001 From: Jon Wayne Parrott Date: Wed, 27 Jul 2016 15:09:51 -0700 Subject: [PATCH] Fix system test reference to GOOGLE_TOKEN_URI. (#573) --- scripts/run_system_tests.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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', )