summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorSimon Charette <charettes@users.noreply.github.com>2014-10-05 17:34:20 -0400
committerSimon Charette <charettes@users.noreply.github.com>2014-10-05 17:34:20 -0400
commit1e224b39c700122cd7b1c3f8d463ea4e7cb07f58 (patch)
treeea0a9fb0c56fd32af7ae4af4deff6044c5085832 /docs
parent8121860be4b9379d107959290e5748bbaf6de1fe (diff)
parent6baa46cb8b7903c87d7855dc32d5c6a219c10ff1 (diff)
Merge pull request #3312 from tchaumeny/doc_assert_queryset
Updated assertQuerysetEqual documentation following 311b3ad9db94
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/testing/tools.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/testing/tools.txt b/docs/topics/testing/tools.txt
index 7bbc441183..43c5fcaf48 100644
--- a/docs/topics/testing/tools.txt
+++ b/docs/topics/testing/tools.txt
@@ -1497,7 +1497,7 @@ your test suite.
By default, the comparison is also ordering dependent. If ``qs`` doesn't
provide an implicit ordering, you can set the ``ordered`` parameter to
- ``False``, which turns the comparison into a Python set comparison.
+ ``False``, which turns the comparison into a ``collections.Counter`` comparison.
If the order is undefined (if the given ``qs`` isn't ordered and the
comparison is against more than one ordered values), a ``ValueError`` is
raised.