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
from django.conf.urls.defaults import *urlpatterns = patterns('', (r'^$', 'examples.views.index'), (r'^hello/', include('examples.hello.urls')),)