diff options
Diffstat (limited to 'docs/tutorials/wiki/src/views')
| -rw-r--r-- | docs/tutorials/wiki/src/views/tests/test_views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tutorials/wiki/src/views/tests/test_views.py b/docs/tutorials/wiki/src/views/tests/test_views.py index 2b4201955..c2e28dd63 100644 --- a/docs/tutorials/wiki/src/views/tests/test_views.py +++ b/docs/tutorials/wiki/src/views/tests/test_views.py @@ -5,7 +5,7 @@ from tutorial.views.notfound import notfound_view def test_my_view(app_request): info = my_view(app_request) assert app_request.response.status_int == 200 - assert info['project'] == 'myproj' + assert info['project'] == 'tutorial' def test_notfound_view(app_request): info = notfound_view(app_request) |
