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():
3434 googleapiclient.discovery_cache.base.Cache, a cache object which
3535 is auto detected, or None if no cache object is available.
3636 """
37- if "APPENGINE_RUNTIME " in os .environ :
37+ if "GAE_ENV " in os .environ :
3838 try :
3939 from . import appengine_memcache
4040
Original file line number Diff line number Diff line change @@ -1205,7 +1205,7 @@ def test_single_500_then_404_retries_and_succeeds(self):
12051205class DiscoveryFromAppEngineCache (unittest .TestCase ):
12061206 def setUp (self ):
12071207 self .old_environ = os .environ .copy ()
1208- os .environ ["APPENGINE_RUNTIME " ] = "python27 "
1208+ os .environ ["GAE_ENV " ] = "standard "
12091209
12101210 def tearDown (self ):
12111211 os .environ = self .old_environ
You can’t perform that action at this time.
0 commit comments