# HG changeset patch # User Pawel Solyga # Date 1240647186 -7200 # Node ID ec80019740ea846aadef0b7a0e022043ddc7eb25 # Parent 030d014792c53028b23df25d04d9b7e3cf1a522b Fix broken tests by renaming default app id from "your_app_id" to "test-app-run". This fix is required due to changes in GAE 1.2.1. Patch by: Pawel Solyga diff -r 030d014792c5 -r ec80019740ea tests/run.py --- a/tests/run.py Sat Apr 25 10:09:24 2009 +0200 +++ b/tests/run.py Sat Apr 25 10:13:06 2009 +0200 @@ -56,7 +56,7 @@ apiproxy_stub_map.apiproxy.RegisterStub('user', user_service_stub.UserServiceStub()) apiproxy_stub_map.apiproxy.RegisterStub('datastore', - datastore_file_stub.DatastoreFileStub('your_app_id', None, None)) + datastore_file_stub.DatastoreFileStub('test-app-run', None, None)) apiproxy_stub_map.apiproxy.RegisterStub('memcache', memcache_stub.MemcacheServiceStub()) apiproxy_stub_map.apiproxy.RegisterStub('mail', mail_stub.MailServiceStub())