diff --git a/docs/topics/testing.txt b/docs/topics/testing.txt
index 9b23d54..66029e7 100644
a
|
b
|
can access these properties as part of a test condition.
|
906 | 906 | A dictionary-like object containing session information. See the |
907 | 907 | :ref:`session documentation<topics-http-sessions>` for full details. |
908 | 908 | |
| 909 | To modify the session and then save it, it must be stored in a variable |
| 910 | first (because a new ``SessionStore`` is created every time this property |
| 911 | is accessed):: |
| 912 | |
| 913 | def test_something(self): |
| 914 | session = self.client.session |
| 915 | session['somekey'] = 'test' |
| 916 | session.save() |
| 917 | |
909 | 918 | .. _Cookie module documentation: http://docs.python.org/library/cookie.html |
910 | 919 | |
911 | 920 | Example |