summaryrefslogtreecommitdiff
path: root/docs/topics/testing/tools.txt
diff options
context:
space:
mode:
authorMichiel Beijen <mb@x14.nl>2017-04-23 22:06:12 +0200
committerTim Graham <timograham@gmail.com>2017-04-24 20:16:09 -0400
commit5e8625ba643db118a44cb32e9e48bf431ef4da53 (patch)
tree62e94281654806927d39568683413941d581633c /docs/topics/testing/tools.txt
parent9f2e8b5bb79722ccafa3c4d6816bc847be1f59f9 (diff)
downloaddjango-5e8625ba643db118a44cb32e9e48bf431ef4da53.tar.gz
Renamed "Mac OS X" to "macOS" in docs.
Diffstat (limited to 'docs/topics/testing/tools.txt')
-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 5c94cb8c09..4f11bd33ff 100644
--- a/docs/topics/testing/tools.txt
+++ b/docs/topics/testing/tools.txt
@@ -717,7 +717,7 @@ If your tests make any database queries, use subclasses
``tearDownClass()`` are run. In the case of :class:`django.test.TestCase`,
this will leak the transaction created in ``super()`` which results in
various symptoms including a segmentation fault on some platforms (reported
- on OS X). If you want to intentionally raise an exception such as
+ on macOS). If you want to intentionally raise an exception such as
:exc:`unittest.SkipTest` in ``setUpClass()``, be sure to do it before
calling ``super()`` to avoid this.