summaryrefslogtreecommitdiff
path: root/docs/topics
diff options
context:
space:
mode:
Diffstat (limited to 'docs/topics')
-rw-r--r--docs/topics/testing.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/testing.txt b/docs/topics/testing.txt
index 3971958dc7..d5ccc2d8fc 100644
--- a/docs/topics/testing.txt
+++ b/docs/topics/testing.txt
@@ -771,7 +771,7 @@ arguments at time of construction:
>>> c = Client()
>>> with open('wishlist.doc') as fp:
- >>> c.post('/customers/wishes/', {'name': 'fred', 'attachment': fp})
+ ... c.post('/customers/wishes/', {'name': 'fred', 'attachment': fp})
(The name ``attachment`` here is not relevant; use whatever name your
file-processing code expects.)