~ubuntu-branches/debian/sid/python-django/sid

« back to all changes in this revision

Viewing changes to tests/regressiontests/utils/decorators.py

  • Committer: Package Import Robot
  • Author(s): Luke Faraone, Jakub Wilk, Luke Faraone
  • Date: 2013-05-09 15:10:47 UTC
  • mfrom: (6.2.12 experimental)
  • Revision ID: package-import@ubuntu.com-20130509151047-g79qsrewg1yl43h5
Tags: 1.5.1-2
[ Jakub Wilk ]
* Use canonical URIs for Vcs-* fields.

[ Luke Faraone ]
* Upload to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
105
105
        response.render()
106
106
        self.assertTrue(getattr(request, 'process_response_reached', False))
107
107
        # Check that process_response saw the rendered content
108
 
        self.assertEqual(request.process_response_content, "Hello world")
 
108
        self.assertEqual(request.process_response_content, b"Hello world")