diff --git a/docs/topics/testing.txt b/docs/topics/testing.txt
index 7afdbe8..117dfbe 100644
a
|
b
|
file, all Django tests run with :setting:`DEBUG`\=False. This is to ensure that
|
508 | 508 | the observed output of your code matches what will be seen in a production |
509 | 509 | setting. |
510 | 510 | |
| 511 | Caches are not cleared after each test, and running "manage.py test fooapp" can |
| 512 | insert data from the tests into the cache of a live system if you run your |
| 513 | tests in production because, unlike databases, a separate "test cache" is not |
| 514 | used. This behavior `may change`_ in the future. |
| 515 | |
| 516 | .. _may change: https://code.djangoproject.com/ticket/11505 |
| 517 | |
511 | 518 | Understanding the test output |
512 | 519 | ----------------------------- |
513 | 520 | |