diff --git a/docs/topics/testing.txt b/docs/topics/testing.txt
index bd727ee..99b11f1 100644
a
|
b
|
arguments at time of construction:
|
687 | 687 | parameters will be made available in the request.GET data. For example, |
688 | 688 | if you were to make the request:: |
689 | 689 | |
690 | | >>> c.post('/login/?vistor=true', {'name': 'fred', 'passwd': 'secret'}) |
| 690 | >>> c.post('/login/?visitor=true', {'name': 'fred', 'passwd': 'secret'}) |
691 | 691 | |
692 | 692 | ... the view handling this request could interrogate request.POST |
693 | 693 | to retrieve the username and password, and could interrogate request.GET |