File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
googleapiclient/discovery_cache Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ def autodetect():
34
34
googleapiclient.discovery_cache.base.Cache, a cache object which
35
35
is auto detected, or None if no cache object is available.
36
36
"""
37
- if "APPENGINE_RUNTIME " in os .environ :
37
+ if "GAE_ENV " in os .environ :
38
38
try :
39
39
from . import appengine_memcache
40
40
Original file line number Diff line number Diff line change @@ -1205,7 +1205,7 @@ def test_single_500_then_404_retries_and_succeeds(self):
1205
1205
class DiscoveryFromAppEngineCache (unittest .TestCase ):
1206
1206
def setUp (self ):
1207
1207
self .old_environ = os .environ .copy ()
1208
- os .environ ["APPENGINE_RUNTIME " ] = "python27 "
1208
+ os .environ ["GAE_ENV " ] = "standard "
1209
1209
1210
1210
def tearDown (self ):
1211
1211
os .environ = self .old_environ
You can’t perform that action at this time.
0 commit comments